o adding IT it0079

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465853 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:48:32 +00:00
parent 1ce3958182
commit fad7bd8ee7
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0079</artifactId>
<description>Test that source attachments have the same build number as the main
artifact when deployed.</description>
<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>

View File

@ -0,0 +1,6 @@
package org.apache.maven.it0079;
public class Person
{
String name;
}