This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 80fbec12616be95843d55e004505a77af4e649a9 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Apr 8 14:55:24 2020 +0100 Split SNAPSHOT repository activation into separate profiles --- pom.xml | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 5f3fcd4..35c243f 100644 --- a/pom.xml +++ b/pom.xml @@ -801,7 +801,7 @@ </profile> <profile> - <id>snapshots</id> + <id>apache-snapshots</id> <activation> <activeByDefault>false</activeByDefault> </activation> @@ -817,16 +817,6 @@ <enabled>false</enabled> </releases> </repository> - <repository> - <id>oss-snapshots-repo</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> </repositories> <pluginRepositories> <pluginRepository> @@ -839,6 +829,27 @@ <enabled>false</enabled> </releases> </pluginRepository> + </pluginRepositories> + </profile> + + <profile> + <id>oss-snapshots</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <repositories> + <repository> + <id>oss-snapshots-repo</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + <pluginRepositories> <pluginRepository> <id>oss-snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>