You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2016/11/05 00:11:39 UTC

incubator-tamaya-extensions git commit: Added a Maven Settings file to enable the ASF snapshot repository during the build on build.apache.org.

Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 9e58027cb -> fc7c571f2


Added a Maven Settings file to enable the ASF snapshot repository during the build on build.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/fc7c571f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/fc7c571f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/fc7c571f

Branch: refs/heads/master
Commit: fc7c571f25526ea672c3fcc72fcfa6ef933ac13b
Parents: 9e58027
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sat Nov 5 01:11:34 2016 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sat Nov 5 01:11:34 2016 +0100

----------------------------------------------------------------------
 settings-with-asf-snapshots.xml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/fc7c571f/settings-with-asf-snapshots.xml
----------------------------------------------------------------------
diff --git a/settings-with-asf-snapshots.xml b/settings-with-asf-snapshots.xml
new file mode 100644
index 0000000..7a122ef
--- /dev/null
+++ b/settings-with-asf-snapshots.xml
@@ -0,0 +1,29 @@
+<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>
+
+
+