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 |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 5 | dependencyTargets |
| 6 | local.cache.dir |
| 7 | dependency.properties |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 8 | |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 9 | ====================================================================== --> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 10 | <project name="test" default="get"> |
david_williams | bf90f71 | 2007-02-13 02:50:13 +0000 | [diff] [blame] | 11 | |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 12 | <target name="get"> |
david_williams | 8fac553 | 2007-05-02 07:08:21 +0000 | [diff] [blame] | 13 | <antcall target="getAndInstall"> |
| 14 | <param name="groupId" value="orbitthirdparty" /> |
| 15 | </antcall> |
| 16 | |
david_williams | bf90f71 | 2007-02-13 02:50:13 +0000 | [diff] [blame] | 17 | <antcall target="getAndInstall"> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 18 | <param name="groupId" value="emf" /> |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 19 | </antcall> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 20 | |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 21 | <antcall target="getAndInstall"> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 22 | <param name="groupId" value="gef" /> |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 23 | </antcall> |
david_williams | 116353d | 2007-02-19 20:50:16 +0000 | [diff] [blame] | 24 | |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 25 | <antcall target="getAndInstall"> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 26 | <param name="groupId" value="dtp" /> |
david_williams | d913e92 | 2006-11-13 07:24:21 +0000 | [diff] [blame] | 27 | </antcall> |
david_williams | 1be1e94 | 2006-12-06 04:39:39 +0000 | [diff] [blame] | 28 | |
| 29 | <antcall target="getAndInstall"> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 30 | <param name="groupId" value="eclipse" /> |
david_williams | 1be1e94 | 2006-12-06 04:39:39 +0000 | [diff] [blame] | 31 | </antcall> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 32 | |
david_williams | 1be1e94 | 2006-12-06 04:39:39 +0000 | [diff] [blame] | 33 | </target> |
david_williams | d3a70a7 | 2007-03-17 06:21:47 +0000 | [diff] [blame] | 34 | |
| 35 | <target name="getAndInstall"> |
| 36 | |
| 37 | <ant antfile="${dependencyTargets}" |
| 38 | target="checkDependency"> |
| 39 | <property name="groupId" value="${groupId}" /> |
| 40 | </ant> |
| 41 | <ant antfile="${dependencyTargets}" |
| 42 | target="installDependency"> |
| 43 | <property name="groupId" value="${groupId}" /> |
| 44 | <property name="install.destination" |
| 45 | value="${base.install.dir}" /> |
| 46 | </ant> |
| 47 | </target> |
| 48 | |
ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 49 | </project> |
| 50 | |