You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/05/07 13:30:33 UTC

[40/50] [abbrv] maven-aether git commit: Added profile to enable building against snapshot or staged version of aether core

Added profile to enable building against snapshot or staged version of aether core


Project: http://git-wip-us.apache.org/repos/asf/maven-aether/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-aether/commit/e31a86ec
Tree: http://git-wip-us.apache.org/repos/asf/maven-aether/tree/e31a86ec
Diff: http://git-wip-us.apache.org/repos/asf/maven-aether/diff/e31a86ec

Branch: refs/heads/ant-tasks
Commit: e31a86ecc92053046a17a18948e0996196c7613f
Parents: 4ce7a61
Author: Benjamin Bentmann <be...@sonatype.com>
Authored: Sun May 18 19:22:05 2014 +0200
Committer: Benjamin Bentmann <be...@sonatype.com>
Committed: Sun May 18 19:22:05 2014 +0200

----------------------------------------------------------------------
 pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-aether/blob/e31a86ec/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3ee284f..4a885bd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -700,5 +700,22 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>ossrh-staging-repo</id>
+      <repositories>
+        <repository>
+          <id>ossrh-staging</id>
+          <url>http://oss.sonatype.org/content/groups/staging/</url>
+          <releases>
+            <enabled>true</enabled>
+            <checksumPolicy>fail</checksumPolicy>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+            <checksumPolicy>fail</checksumPolicy>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
   </profiles>
 </project>