mirror of https://github.com/apache/maven.git
33 lines
908 B
XML
33 lines
908 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0079</artifactId>
|
|
|
|
<version>SNAPSHOT</version>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>test</id>
|
|
<name>Test Repo</name>
|
|
<url>file:target/test-repo</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |