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 <[email protected]> Authored: Sun May 18 19:22:05 2014 +0200 Committer: Benjamin Bentmann <[email protected]> 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>
