mirror of https://github.com/apache/maven.git
o adding a local/offline profile and a test value of my tmp directory. I'll find something more appropriate but this is
working for testing. git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@468253 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
660d4eb38b
commit
4af4fb4026
28
its/pom.xml
28
its/pom.xml
|
@ -3,7 +3,7 @@
|
|||
<parent>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-parent</artifactId>
|
||||
<version>1</version>
|
||||
<version>3</version>
|
||||
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.maven.its</groupId>
|
||||
|
@ -51,4 +51,30 @@
|
|||
<modules>
|
||||
<module>core-integration-testing-plugins</module>
|
||||
</modules>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>apache.releases</id>
|
||||
<url>${repositoryUrl}</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>apache.snapshots</id>
|
||||
<url>${repositoryUrl}</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>mode-local-offline</id>
|
||||
<properties>
|
||||
<repositoryUrl>file:///tmp/mits/repository-remote</repositoryUrl>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>central</id>
|
||||
<url>${repositoryUrl}</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue