blob: 79ea6bba2d9cf8fd231c9aa46198437d2edcf997 [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<name>Maven Integration Test :: it0014</name>
<groupId>org.apache.maven.its.it0014</groupId>
<artifactId>maven-it-it0014</artifactId>
<description>Test POM configuration by settings the -source and -target for the
compiler to 1.4</description>
<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>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
</plugins>
</build>
</project>