2005-04-18 00:12:34 -04:00
|
|
|
<model>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact-ant</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<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-22 23:12:07 -04:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-04-18 00:12:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-04-22 23:12:07 -04:00
|
|
|
<artifactId>maven-project</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-04-18 00:12:34 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-04-18 03:09:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-ssh</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2005-04-18 00:12:34 -04:00
|
|
|
</dependencies>
|
2005-04-18 03:09:16 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-04-18 00:12:34 -04:00
|
|
|
</model>
|