Skip to content

Commit

Permalink
Closes #2206: Wildfly migration from 15 to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
arolfes committed Apr 7, 2023
1 parent 4ca3987 commit 08219b7
Show file tree
Hide file tree
Showing 8 changed files with 659 additions and 920 deletions.
2 changes: 1 addition & 1 deletion lib/taskana-cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-javaee8</artifactId>
<artifactId>wildfly-jakartaee8</artifactId>
<version>${version.wildfly}</version>
<scope>import</scope>
<type>pom</type>
Expand Down
2 changes: 1 addition & 1 deletion lib/taskana-cdi/src/test/resources/arquillian.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<defaultProtocol type="Servlet 3.0"/>
<container qualifier="wildfly" default="true">
<configuration>
<property name="jbossHome">target/wildfly-15.0.1.Final</property>
<property name="jbossHome">target/wildfly-25.0.1.Final</property>
<property
name="serverConfig">../../../../src/test/resources/int-test-standalone.xml
</property>
Expand Down
846 changes: 333 additions & 513 deletions lib/taskana-cdi/src/test/resources/int-test-standalone.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<version.spring.mybatis>2.1.0</version.spring.mybatis>

<!-- wildfly dependencies -->
<version.wildfly>15.0.1.Final</version.wildfly>
<version.wildfly>25.0.1.Final</version.wildfly>

<!-- camunda dependencies -->
<version.camunda.dmn>7.18.0</version.camunda.dmn>
Expand Down
2 changes: 1 addition & 1 deletion rest/taskana-rest-spring-example-wildfly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-javaee8</artifactId>
<artifactId>wildfly-jakartaee8</artifactId>
<version>${version.wildfly}</version>
<scope>import</scope>
<type>pom</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected ResponseEntity<TaskRepresentationModel> performCreateTaskRestCall() {
protected String parseServerLog() throws Exception {

// TO-DO: make log4j log into rollingFile from log4j.xml
File file = new File("target/wildfly-15.0.1.Final/standalone/log/server.log");
File file = new File("target/wildfly-25.0.1.Final/standalone/log/server.log");

BufferedReader br = new BufferedReader(new FileReader(file));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<defaultProtocol type="Servlet 3.0"/>
<container qualifier="jboss" default="true">
<configuration>
<property name="jbossHome">target/wildfly-15.0.1.Final</property>
<property name="jbossHome">target/wildfly-25.0.1.Final</property>
<property
name="serverConfig">../../../../src/test/resources/int-test-standalone.xml
</property>
Expand Down

Large diffs are not rendered by default.

0 comments on commit 08219b7

Please sign in to comment.