mirror of https://github.com/apache/maven.git
29 lines
784 B
XML
29 lines
784 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0012</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>3.8.1</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<configuration>
|
|
<pluginFile>touch-${version}.txt</pluginFile>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>snapshots</id>
|
|
<name>Maven Central Plugins Development Repository</name>
|
|
<url>http://snapshots.maven.codehaus.org/maven2/plugins</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<modules>
|
|
<module>child-project</module>
|
|
</modules>
|
|
</model>
|