Stephan Herrmann | 0166441 | 2010-04-01 20:28:43 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ===================================================================== --> |
| 3 | <!-- Custom targets called from a project's generated build.xml --> |
| 4 | <!-- Set customBuildCallbacks=<path/to/this/file> in your build.properties.--> |
| 5 | <!-- ===================================================================== --> |
| 6 | <project name="Build specific targets and properties" default="noDefault"> |
| 7 | |
| 8 | <!-- ===================================================================== --> |
| 9 | <!-- Default target --> |
| 10 | <!-- ===================================================================== --> |
| 11 | <target name="noDefault"> |
| 12 | <echo message="This file must be called with explicit targets" /> |
| 13 | </target> |
| 14 | |
| 15 | <!-- ===================================================================== --> |
| 16 | <!-- Steps to do before the target build.jars --> |
| 17 | <!-- Available parameters : --> |
| 18 | <!-- build.result.folder - folder to contain the build results --> |
| 19 | <!-- ===================================================================== --> |
| 20 | <target name="pre.build.jars"> |
| 21 | </target> |
| 22 | |
| 23 | <!-- ===================================================================== --> |
| 24 | <!-- Steps to do after the target build.jars --> |
| 25 | <!-- Available parameters : --> |
| 26 | <!-- build.result.folder - folder to contain the build results --> |
| 27 | <!-- ===================================================================== --> |
| 28 | <target name="post.build.jars"> |
| 29 | <ant antfile="buildDoc.xml" /> |
| 30 | </target> |
| 31 | |
| 32 | <!-- ===================================================================== --> |
| 33 | <!-- Steps to do before the target build.sources --> |
| 34 | <!-- Available parameters : --> |
| 35 | <!-- build.result.folder - folder to contain the build results --> |
| 36 | <!-- ===================================================================== --> |
| 37 | <target name="pre.build.sources"> |
| 38 | </target> |
| 39 | |
| 40 | <!-- ===================================================================== --> |
| 41 | <!-- Steps to do after the target build.sources --> |
| 42 | <!-- Available parameters : --> |
| 43 | <!-- build.result.folder - folder to contain the build results --> |
| 44 | <!-- ===================================================================== --> |
| 45 | <target name="post.build.sources"> |
| 46 | </target> |
| 47 | |
| 48 | <!-- ===================================================================== --> |
| 49 | <!-- Steps to do before the compilation target <name> --> |
| 50 | <!-- Substitute "name" with the name of the compilation target, eg @dot --> |
| 51 | <!-- Available parameters : --> |
| 52 | <!-- source.foldern : n = 1 ... N, the source folders --> |
| 53 | <!-- target.folder : where the results of the compilation go --> |
| 54 | <!-- <name>.classpath : name = name of the compilation target. A --> |
| 55 | <!-- reference to the classpath structure. --> |
| 56 | <!-- ===================================================================== --> |
| 57 | <target name="pre.activeHelpSample.jar"> |
| 58 | </target> |
| 59 | |
| 60 | <!-- ===================================================================== --> |
| 61 | <!-- Steps to do after compilation but before jaring --> |
| 62 | <!-- Substitute "name" with the name of the compilation target, eg @dot --> |
| 63 | <!-- Available parameters : --> |
| 64 | <!-- source.foldern : n = 1 ... N, the source folders --> |
| 65 | <!-- target.folder : where the results of the compilation go --> |
| 66 | <!-- <name>.classpath : name = name of the compilation target. A --> |
| 67 | <!-- reference to the classpath structure. --> |
| 68 | <!-- ===================================================================== --> |
| 69 | <target name="post.compile.activeHelpSample.jar"> |
| 70 | </target> |
| 71 | |
| 72 | <!-- ===================================================================== --> |
| 73 | <!-- Steps to do after the compilation target <name> --> |
| 74 | <!-- Substitute "name" with the name of the compilation target, eg @dot --> |
| 75 | <!-- Available parameters : --> |
| 76 | <!-- jar.location - the location of the compilation results --> |
| 77 | <!-- <name>.classpath : name = name of the compilation target. A --> |
| 78 | <!-- reference to the classpath structure. --> |
| 79 | <!-- ===================================================================== --> |
| 80 | <target name="post.activeHelpSample.jar"> |
| 81 | </target> |
| 82 | |
| 83 | <!-- ===================================================================== --> |
| 84 | <!-- Steps to do before the target gather.bin.parts --> |
| 85 | <!-- Available parameters : --> |
| 86 | <!-- destination.temp.folder - the directory plugins will be collected to --> |
| 87 | <!-- feature.directory - the directory containing the resulting feature --> |
| 88 | <!-- ===================================================================== --> |
| 89 | <target name="pre.gather.bin.parts"> |
| 90 | </target> |
| 91 | |
| 92 | <!-- ===================================================================== --> |
| 93 | <!-- Steps to do after the target gather.bin.parts --> |
| 94 | <!-- Available parameters : --> |
| 95 | <!-- base.dir - root of the project --> |
| 96 | <!-- build.result.folder - folder containing the build results --> |
| 97 | <!-- target.folder - destination folder --> |
| 98 | <!-- ===================================================================== --> |
| 99 | <target name="post.gather.bin.parts"> |
| 100 | </target> |
| 101 | |
| 102 | <!-- ===================================================================== --> |
| 103 | <!-- Steps to do before the target gather.sources --> |
| 104 | <!-- Available parameters : --> |
| 105 | <!-- destination.temp.folder - destination folder --> |
| 106 | <!-- ===================================================================== --> |
| 107 | <target name="pre.gather.sources"> |
| 108 | </target> |
| 109 | |
| 110 | <!-- ===================================================================== --> |
| 111 | <!-- Steps to do after the target gather.sources --> |
| 112 | <!-- Available parameters : --> |
| 113 | <!-- destination.temp.folder - destination folder --> |
| 114 | <!-- ===================================================================== --> |
| 115 | <target name="post.gather.sources"> |
| 116 | </target> |
| 117 | |
| 118 | <!-- ===================================================================== --> |
| 119 | <!-- Steps to do before the target gather.logs --> |
| 120 | <!-- Available parameters : --> |
| 121 | <!-- destination.temp.folder - destination folder --> |
| 122 | <!-- ===================================================================== --> |
| 123 | <target name="pre.gather.logs"> |
| 124 | </target> |
| 125 | |
| 126 | <!-- ===================================================================== --> |
| 127 | <!-- Steps to do after the target gather.logs --> |
| 128 | <!-- Available parameters : --> |
| 129 | <!-- destination.temp.folder - destination folder --> |
| 130 | <!-- ===================================================================== --> |
| 131 | <target name="post.gather.logs"> |
| 132 | </target> |
| 133 | |
| 134 | <!-- ===================================================================== --> |
| 135 | <!-- Steps to do before the target clean --> |
| 136 | <!-- Available parameters : --> |
| 137 | <!-- destination.temp.folder - destination folder --> |
| 138 | <!-- ===================================================================== --> |
| 139 | <target name="pre.clean"> |
| 140 | </target> |
| 141 | |
| 142 | <!-- ===================================================================== --> |
| 143 | <!-- Steps to do after the target clean --> |
| 144 | <!-- Available parameters : --> |
| 145 | <!-- plugin.destination - final destination of the build --> |
| 146 | <!-- build.result.folder - results of the compilation --> |
| 147 | <!-- temp.folder - temporary folder --> |
| 148 | <!-- ===================================================================== --> |
| 149 | <target name="post.clean"> |
| 150 | </target> |
| 151 | </project> |