2005-06-12 22:47:57 -04:00
|
|
|
<model>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core-it0024</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test</id>
|
2005-06-18 12:01:48 -04:00
|
|
|
<phase>generate-sources</phase>
|
2005-06-12 22:47:57 -04:00
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<source>1.4</source>
|
|
|
|
<target>1.4</target>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<goals>
|
2005-06-18 11:19:18 -04:00
|
|
|
<goal>compile</goal>
|
2005-06-12 22:47:57 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</model>
|