diff --git a/build-parent/pom.xml b/build-parent/pom.xml index 168eb617d01dd..265f81d6e1445 100644 --- a/build-parent/pom.xml +++ b/build-parent/pom.xml @@ -19,7 +19,6 @@ - 3.11.0 1.9.0 1.8.20 @@ -28,7 +27,6 @@ ${scala-maven-plugin.version} - 3.2.1 3.1.2 3.0.0 diff --git a/independent-projects/enforcer-rules/src/it/smoketest/pom.xml b/independent-projects/enforcer-rules/src/it/smoketest/pom.xml index 661eb1658613b..7703e96701d09 100644 --- a/independent-projects/enforcer-rules/src/it/smoketest/pom.xml +++ b/independent-projects/enforcer-rules/src/it/smoketest/pom.xml @@ -3,9 +3,10 @@ 4.0.0 - org.jboss - jboss-parent - 39 + io.quarkus + quarkus-parent + 999-SNAPSHOT + ../../../parent/pom.xml io.quarkus @@ -19,4 +20,4 @@ - \ No newline at end of file + diff --git a/independent-projects/tools/pom.xml b/independent-projects/tools/pom.xml index fb4c5a840c4ec..0417510abaf27 100644 --- a/independent-projects/tools/pom.xml +++ b/independent-projects/tools/pom.xml @@ -45,7 +45,6 @@ 8.1.1 - 3.11.0 1.6.0 2.12.13 diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml index f1a923ff17713..f4a8d560e908f 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml +++ b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/pom.xml @@ -48,12 +48,7 @@ commons-io commons-io - 2.6 - - - org.drools - drools-engine - 7.51.0.Final + 2.13.0 io.quarkus diff --git a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java index 62da97eb07a1c..4da0183f2e478 100644 --- a/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java +++ b/integration-tests/maven/src/test/resources-filtered/projects/rr-with-json-logging/src/main/java/org/acme/ClasspathResources.java @@ -165,11 +165,13 @@ private String assertCorrectDirectory() { private String assertUniqueDirectories() { final String testType = "unique-directories"; try { - Enumeration resources = this.getClass().getClassLoader().getResources("META-INF/kie.conf"); + Enumeration resources = this.getClass().getClassLoader().getResources("META-INF/quarkus-extension.yaml"); List resourcesList = Collections.list(resources); - // 'META-INF/kie.conf' should be present in 'kie-internal', 'drools-core', 'drools-compiler' and 'drools-model-compiler' - if (resourcesList.size() != 4) { - return errorResult(testType, "wrong number of directory urls"); + // 'META-INF/quarkus-extension.yaml' should be present in all extensions + int expected = 12; + if (resourcesList.size() != expected) { + return errorResult(testType, + "wrong number of directory urls, expected " + expected + " but got " + resourcesList.size()); } return SUCCESS; } catch (Exception e) {