You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2017/03/28 12:00:02 UTC

camel git commit: CAMEL-10925: adding apache snapshot to user pom to execute tests in CI

Repository: camel
Updated Branches:
  refs/heads/master 6ab37afa1 -> 125b8db2b


CAMEL-10925: adding apache snapshot to user pom to execute tests in CI


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/125b8db2
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/125b8db2
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/125b8db2

Branch: refs/heads/master
Commit: 125b8db2bcd1d1335a28cd6804b2f15bfecae9bf
Parents: 6ab37af
Author: Nicola Ferraro <ni...@gmail.com>
Authored: Tue Mar 28 13:59:21 2017 +0200
Committer: Nicola Ferraro <ni...@gmail.com>
Committed: Tue Mar 28 13:59:51 2017 +0200

----------------------------------------------------------------------
 .../src/test/resources/application-pom.xml      | 25 ++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/125b8db2/tests/camel-itest-spring-boot/src/test/resources/application-pom.xml
----------------------------------------------------------------------
diff --git a/tests/camel-itest-spring-boot/src/test/resources/application-pom.xml b/tests/camel-itest-spring-boot/src/test/resources/application-pom.xml
index 8dbc1be..4570a02 100644
--- a/tests/camel-itest-spring-boot/src/test/resources/application-pom.xml
+++ b/tests/camel-itest-spring-boot/src/test/resources/application-pom.xml
@@ -66,4 +66,29 @@
 
     </dependencies>
 
+    <repositories>
+        <repository>
+            <id>central</id>
+            <name>Maven Central</name>
+            <url>http://repo1.maven.org/maven2/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>apache-snapshots</id>
+            <name>Apache Snapshots</name>
+            <url>http://repository.apache.org/snapshots/</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+
 </project>