ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- ====================================================================== |
| 3 | Properties that must be passed to this script: |
| 4 | base.install.dir |
| 5 | dependencyTargets |
| 6 | local.cache.dir |
| 7 | dependency.properties |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame^] | 8 | |
| 9 | This file should not be used by the main WTP build |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 10 | ====================================================================== --> |
| 11 | <project name="test" default="get"> |
| 12 | |
| 13 | <target name="get"> |
ndai | 8ab0953 | 2006-03-29 08:48:53 +0000 | [diff] [blame] | 14 | |
david_williams | 0987a07 | 2007-02-20 18:27:24 +0000 | [diff] [blame] | 15 | <antcall target="getAndInstall"> |
| 16 | <param name="groupId" value="orbitthirdparty" /> |
| 17 | </antcall> |
ndai | 8ab0953 | 2006-03-29 08:48:53 +0000 | [diff] [blame] | 18 | <antcall target="getAndInstall"> |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 19 | <param name="groupId" value="emf" /> |
| 20 | </antcall> |
| 21 | <antcall target="getAndInstall"> |
| 22 | <param name="groupId" value="gef" /> |
| 23 | </antcall> |
david_williams | 0987a07 | 2007-02-20 18:27:24 +0000 | [diff] [blame] | 24 | <antcall target="getAndInstall"> |
| 25 | <param name="groupId" value="dtp" /> |
| 26 | </antcall> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame^] | 27 | <!-- This file should not be used by the main WTP build --> |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 28 | <antcall target="getAndInstall"> |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 29 | <param name="groupId" value="wtp" /> |
david_williams | ae0e4cb | 2006-11-11 02:55:51 +0000 | [diff] [blame] | 30 | </antcall> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame^] | 31 | |
david_williams | ae0e4cb | 2006-11-11 02:55:51 +0000 | [diff] [blame] | 32 | <antcall target="getAndInstall"> |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 33 | <param name="groupId" value="eclipse" /> |
| 34 | </antcall> |
| 35 | <antcall target="getAndInstall"> |
| 36 | <param name="groupId" value="eclipseTestFramework" /> |
| 37 | </antcall> |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 38 | |
| 39 | </target> |
| 40 | |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 41 | <target name="getAndInstall"> |
ndai | 8ab0953 | 2006-03-29 08:48:53 +0000 | [diff] [blame] | 42 | |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 43 | <ant antfile="${dependencyTargets}" target="checkDependency"> |
| 44 | <property name="groupId" value="${groupId}" /> |
| 45 | </ant> |
| 46 | <ant antfile="${dependencyTargets}" target="installDependency"> |
| 47 | <property name="groupId" value="${groupId}" /> |
| 48 | <property name="install.destination" value="${base.install.dir}" /> |
| 49 | </ant> |
david_williams | ae0e4cb | 2006-11-11 02:55:51 +0000 | [diff] [blame] | 50 | |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 51 | </target> |
| 52 | |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 53 | </project> |
| 54 | |