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/20 09:49:41 UTC

camel git commit: CAMEL-10925: adding apache-snapshot repo

Repository: camel
Updated Branches:
  refs/heads/master 4d2acef8a -> b7b26ed62


CAMEL-10925: adding apache-snapshot repo


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

Branch: refs/heads/master
Commit: b7b26ed62cc1f8a7fe412ec54d3d82a68be1f7ed
Parents: 4d2acef
Author: Nicola Ferraro <ni...@gmail.com>
Authored: Mon Mar 20 10:49:20 2017 +0100
Committer: Nicola Ferraro <ni...@gmail.com>
Committed: Mon Mar 20 10:49:20 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/itest/springboot/util/BOMResolver.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b7b26ed6/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
index 4b86b33..7fd76df 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/BOMResolver.java
@@ -127,8 +127,9 @@ public final class BOMResolver {
 
 
         RemoteRepository mavenCentral = new RemoteRepository.Builder("central", "default", "http://repo1.maven.org/maven2/").build();
+        RemoteRepository apacheSnapshots = new RemoteRepository.Builder("apache-snapshots", "default", "http://repository.apache.org/snapshots/").build();
 
-        ArtifactDescriptorRequest dReq = new ArtifactDescriptorRequest(camelSpringBootParent, Arrays.asList(localRepoDist, mavenCentral), null);
+        ArtifactDescriptorRequest dReq = new ArtifactDescriptorRequest(camelSpringBootParent, Arrays.asList(localRepoDist, mavenCentral, apacheSnapshots), null);
         ArtifactDescriptorResult dRes = system.readArtifactDescriptor(session, dReq);
 
         this.versions = new TreeMap<>();