mirror of https://github.com/apache/maven.git
22 lines
517 B
XML
22 lines
517 B
XML
|
<project>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.apache.maven.plugins.it</groupId>
|
||
|
<artifactId>maven-it0067-plugin</artifactId>
|
||
|
<packaging>maven-plugin</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>test-profile</id>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|