This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 82ad138 Fixed Spring Boot integration tests
82ad138 is described below
commit 82ad138e535d37b1b0e45f8b42675b49a7e37da6
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Nov 19 08:56:46 2019 +0100
Fixed Spring Boot integration tests
---
.../java/org/apache/camel/itest/springboot/util/ArquillianPackager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
index fd21739..d49a07b 100644
---
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
+++
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
@@ -137,7 +137,7 @@ public final class ArquillianPackager {
PomEquippedResolveStage pom =
resolver(config).loadPomFromFile("pom.xml");
List<MavenResolvedArtifact> resolved =
Arrays.asList(pom.importCompileAndRuntimeDependencies().resolve().withoutTransitivity().asResolvedArtifact());
for (MavenResolvedArtifact dep : resolved) {
- if
(dep.getCoordinate().getGroupId().equals("org.apache.camel")) {
+ if
(dep.getCoordinate().getGroupId().equals("org.apache.camel.springboot")) {
version = dep.getCoordinate().getVersion();
break;
}