Skip to content

Commit

Permalink
Fixes #4179 - Update Concurro to latest version (#4195)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Nov 9, 2024
1 parent f12aeb9 commit a36e8af
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,9 @@
<artifactId>project</artifactId>
<version>24.11.0-SNAPSHOT</version>
</parent>
<artifactId>piranha-extension-eclipse-concurro</artifactId>
<artifactId>piranha-extension-concurro</artifactId>
<packaging>jar</packaging>
<name>Piranha - Extension - Eclipse Concurro</name>
<properties>
<concurro.version>3.1.0-M1</concurro.version>
</properties>
<name>Piranha - Extension - Concurro</name>
<dependencies>
<!-- compile -->
<dependency>
Expand All @@ -37,7 +34,6 @@
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.enterprise.concurrent</artifactId>
<version>${concurro.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import static java.lang.System.Logger.Level.TRACE;

/**
* The extension that delivers Eclipse Concurro to Piranha.
* The extension that delivers Concurro to Piranha.
*
* @author Manfred Riem ([email protected])
*/
Expand All @@ -52,6 +52,6 @@ public class ConcurroExtension implements WebApplicationExtension {
*/
@Override
public void configure(WebApplication webApplication) {
LOGGER.log(TRACE, "Configuring Eclipse Concurro extension");
LOGGER.log(TRACE, "Configuring Concurro extension");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,8 @@
*/

/**
* This module delivers the Eclipse Concurro integration extension.
*
* <p>
* This extension integrates Eclipse Conccuro into Piranha. See
* https://github.com/eclipse-ee4j/concurro for more information about its
* project.
* </p>
* This module integrates Conccuro into Piranha. See
* https://github.com/eclipse-ee4j/concurro for more information.
*
* @author Manfred Riem ([email protected])
*/
Expand Down
2 changes: 1 addition & 1 deletion extension/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-eclipse-concurro</artifactId>
<artifactId>piranha-extension-concurro</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<module>bytesstreamhandler</module>
<module>compat-glassfish7x</module>
<module>compat-tomcat10x</module>
<module>concurro</module>
<module>coreprofile</module>
<module>default-datasource</module>
<module>eclipse-angus</module>
<module>eclipse-concurro</module>
<module>eclipse-epicyro</module>
<module>eclipse-exousia</module>
<module>eclipse-jaxb</module>
Expand Down
2 changes: 1 addition & 1 deletion extension/webprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-eclipse-concurro</artifactId>
<artifactId>piranha-extension-concurro</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<checkstyle.version>10.18.2</checkstyle.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-fileupload2-jakarta-servlet6.version>2.0.0-M2</commons-fileupload2-jakarta-servlet6.version>
<concurro.version>3.1.0-M1</concurro.version>
<crac.version>0.1.3</crac.version>
<eclipselink.version>5.0.0-B02</eclipselink.version>
<epicyro.version>3.0.0</epicyro.version>
Expand Down Expand Up @@ -201,6 +202,12 @@
<artifactId>maven-plugin-tools-annotations</artifactId>
<version>${maven-plugin-tools-annotations.version}</version>
</dependency>
<!-- Concurro -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.enterprise.concurrent</artifactId>
<version>${concurro.version}</version>
</dependency>
<!-- Eclipse Angus -->
<dependency>
<groupId>org.eclipse.angus</groupId>
Expand Down

0 comments on commit a36e8af

Please sign in to comment.