david_williams | a2b87ed | 2011-02-15 04:01:30 +0000 | [diff] [blame] | 1 | <project |
| 2 | default="processArtifacts" |
| 3 | basedir="."> |
david_williams | e1130de | 2011-02-15 04:27:24 +0000 | [diff] [blame] | 4 | <target name="processArtifacts"> |
david_williams | a2b87ed | 2011-02-15 04:01:30 +0000 | [diff] [blame] | 5 | |
| 6 | <!-- normally, caller would set repoDirLocation, but for local operation, can hard code here --> |
| 7 | <property |
| 8 | name="repoDirLocation" |
| 9 | value="/shared/webtools/committers/wtp-R3.3.0-I/20101209114749/S-3.3.0M4-20101209114749/repository"/> |
| 10 | <p2.process.artifacts |
| 11 | pack="true" |
| 12 | repositoryPath="file:/${repoDirLocation}"/> |
| 13 | |
| 14 | <!-- clean up some unnecessary files --> |
david_williams | 14cadd1 | 2011-03-23 06:43:39 +0000 | [diff] [blame] | 15 | <delete failonerror="false" quiet="true"> |
david_williams | a2b87ed | 2011-02-15 04:01:30 +0000 | [diff] [blame] | 16 | <fileset |
| 17 | dir="${repoDirLocation}" |
| 18 | includes="artifacts.jar.pack.gz, content.jar.pack.gz, site.xml"/> |
| 19 | </delete> |
| 20 | |
| 21 | </target> |
| 22 | </project> |
| 23 | |