mirror of https://github.com/apache/maven.git
[MNG-3600] commit missing resources
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@738751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1cb3277843
commit
04ec46ed76
|
@ -0,0 +1,43 @@
|
||||||
|
<?xml version="1.0"?><project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.apache.maven.its.mng3600</groupId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<artifactId>test-project</artifactId>
|
||||||
|
<name>test-project</name>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<extensions>
|
||||||
|
<extension>
|
||||||
|
<groupId>org.apache.maven.its</groupId>
|
||||||
|
<artifactId>core-it-wagon</artifactId>
|
||||||
|
<version>2.1-SNAPSHOT</version>
|
||||||
|
</extension>
|
||||||
|
</extensions>
|
||||||
|
</build>
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>id</id>
|
||||||
|
<!-- Note this won't actually be used if it passes -->
|
||||||
|
<url>scpexe://foo.bar/path</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
</project>
|
|
@ -0,0 +1,10 @@
|
||||||
|
<settings>
|
||||||
|
<servers>
|
||||||
|
<server>
|
||||||
|
<id>id</id>
|
||||||
|
<filePermissions>600</filePermissions>
|
||||||
|
<directoryPermissions>700</directoryPermissions>
|
||||||
|
</server>
|
||||||
|
</servers>
|
||||||
|
</settings>
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
<settings>
|
||||||
|
<servers>
|
||||||
|
<server>
|
||||||
|
<id>id</id>
|
||||||
|
</server>
|
||||||
|
</servers>
|
||||||
|
</settings>
|
||||||
|
|
Loading…
Reference in New Issue