Skip to content

Commit

Permalink
Quarkus LTS Upgrade to 3.8.4 (apache#5853)
Browse files Browse the repository at this point in the history
* Upgrade to and align with Quarkus 3.8.2 LTS release.

* Upgrade to and align with Quarkus 3.8.2 LTS release.

* Upgrade to and align with Quarkus 3.8.4 LTS release.

* Remove unnecessary util class, as Quarkus 3.8.x does not have the issue anymore.
  • Loading branch information
porcelli authored and rgdoliveira committed May 7, 2024
1 parent 0978f7e commit 6443dda
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 340 deletions.
258 changes: 33 additions & 225 deletions build-parent/pom.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion drools-persistence/drools-persistence-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-transaction-spi-jakarta</artifactId>
<artifactId>jboss-transaction-spi</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
23 changes: 0 additions & 23 deletions drools-quarkus-extension/drools-quarkus-deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,29 +178,6 @@
</execution>
</executions>
</plugin>
<plugin>
<!-- Remove comments from META-INF/quarkus-javadoc.properties -->
<!-- This is needed because the file generated by quarkus contains a timestamp in a comment that makes the build not reproducible -->
<!-- This workaround can be removed when drools will be migrated to quarkus release containing this fix https://github.com/quarkusio/quarkus/pull/38365 -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>Run Script</id>
<phase>prepare-package</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>org.drools.util.RemoveCommentsMain</mainClass>
<arguments>
<argument>${project.basedir}/target/classes/META-INF/quarkus-javadoc.properties</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
23 changes: 0 additions & 23 deletions drools-quarkus-extension/drools-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,29 +149,6 @@
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
</plugin>
<plugin>
<!-- Remove comments from META-INF/quarkus-extension.properties -->
<!-- This is needed because the file generated by quarkus contains a timestamp in a comment that makes the build not reproducible -->
<!-- This workaround can be removed when drools will be migrated to quarkus release containing this fix https://github.com/quarkusio/quarkus/pull/38365 -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>Run Script</id>
<phase>prepare-package</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>org.drools.util.RemoveCommentsMain</mainClass>
<arguments>
<argument>${project.basedir}/target/classes/META-INF/quarkus-extension.properties</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion drools-traits/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-transaction-spi-jakarta</artifactId>
<artifactId>jboss-transaction-spi</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
51 changes: 0 additions & 51 deletions drools-util/src/main/java/org/drools/util/RemoveCommentsMain.java

This file was deleted.

15 changes: 0 additions & 15 deletions drools-util/src/test/java/org/drools/util/RemoveCommentsTest.java

This file was deleted.

6 changes: 6 additions & 0 deletions kie-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion kie-test-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-transaction-spi-jakarta</artifactId>
<artifactId>jboss-transaction-spi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
Expand Down

0 comments on commit 6443dda

Please sign in to comment.