2005-04-18 04:12:34 +00:00
|
|
|
<model>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-04-23 15:37:12 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2005-04-18 04:12:34 +00:00
|
|
|
<artifactId>maven-artifact-ant</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2005-04-23 03:12:07 +00:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-04-18 04:12:34 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-04-23 03:12:07 +00:00
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-04-18 04:12:34 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-04-25 09:38:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
2005-05-13 07:01:57 +00:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-04-25 09:38:53 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2005-04-18 07:09:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
2005-05-13 07:01:57 +00:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-04-18 07:09:16 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-ssh</artifactId>
|
2005-05-13 07:01:57 +00:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-04-18 07:09:16 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2005-04-29 06:49:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-scm</artifactId>
|
2005-05-13 07:01:57 +00:00
|
|
|
<version>1.0-alpha-3</version>
|
2005-04-29 06:49:53 +00:00
|
|
|
<!-- temporarily compile time scope>runtime</scope -->
|
|
|
|
</dependency>
|
2005-04-18 04:12:34 +00:00
|
|
|
</dependencies>
|
2005-04-18 07:09:16 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-04-18 04:12:34 +00:00
|
|
|
</model>
|