Repository: incubator-tamaya-extensions Updated Branches: refs/heads/master f4167a39b -> 7c01c6e87 (forced update)
Added profile activate-asf-snapshotrepository to get rid of settings-with-asf-snapshots.xml. This allows us the use the provided settings für Apache Maven on builds.apache.org. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/7c01c6e8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/7c01c6e8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/7c01c6e8 Branch: refs/heads/master Commit: 7c01c6e87adbd010c9a845e943d2590667f8c922 Parents: a8b7f75 Author: Oliver B. Fischer <[email protected]> Authored: Sat Dec 24 13:24:14 2016 +0100 Committer: Oliver B. Fischer <[email protected]> Committed: Sat Dec 24 13:52:11 2016 +0100 ---------------------------------------------------------------------- pom.xml | 21 +++++++++++++++++++++ settings-with-asf-snapshots.xml | 29 ----------------------------- 2 files changed, 21 insertions(+), 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/7c01c6e8/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 55cccbb..d68a707 100644 --- a/pom.xml +++ b/pom.xml @@ -871,6 +871,27 @@ under the License. <additionalparam>-Xdoclint:none</additionalparam> </properties> </profile> + + <profile> + <!-- + ! This profiles enables the Apache Maven Snapshot repository. + ! It is required since this project depends von the Tamaya main + ! project and its snapshot releases. + ! Oliver B. Fischer, 2016-12-24 + !--> + <id>activate-asf-snapshots</id> + + <repositories> + <repository> + <id>activate-asf-snapshots</id> + <name>Apache Maven Snapshot Repository</name> + <url>https://repository.apache.org/content/repositories/snapshots/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + </profile> </profiles> <reporting> http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/7c01c6e8/settings-with-asf-snapshots.xml ---------------------------------------------------------------------- diff --git a/settings-with-asf-snapshots.xml b/settings-with-asf-snapshots.xml deleted file mode 100644 index 7a122ef..0000000 --- a/settings-with-asf-snapshots.xml +++ /dev/null @@ -1,29 +0,0 @@ -<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> - - <!-- - ! - !--> - <profiles> - <profile> - <id>activate-asf-snapshots</id> - <repositories> - <repository> - <id>asf-snapshots</id> - <url>https://repository.apache.org/content/repositories/snapshots/</url> - </repository> - </repositories> - </profile> - </profiles> - - - - <activeProfiles> - <activeProfile>activate-asf-snapshots</activeProfile> - </activeProfiles> - -</settings> - - -
