Skip to content

Commit

Permalink
Closes #2486 : Upgrade to Wildfly 31.0.1.Final to make it work with S…
Browse files Browse the repository at this point in the history
…B 3.2
  • Loading branch information
arolfes committed May 12, 2024
1 parent f0f607d commit 8bbcda2
Show file tree
Hide file tree
Showing 12 changed files with 275 additions and 244 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private Connection getConnection() throws Exception {
"jdbc:h2:~/taskana-h2-data/testdb;NON_KEYWORDS=KEY,VALUE;AUTO_SERVER=TRUE;"
+ "IGNORECASE=TRUE;LOCK_MODE=0",
"sa",
"");
"sa");
}

private int countTasksByName(String taskName) throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion lib/taskana-cdi-example/src/test/resources/arquillian.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<defaultProtocol type="Servlet 6.0"/>
<container qualifier="wildfly" default="true">
<configuration>
<property name="jbossHome">target/wildfly-27.0.1.Final</property>
<property name="jbossHome">target/wildfly-31.0.1.Final</property>
<property name="serverConfig">int-test-standalone.xml</property>
<!-- <property name="javaVmArguments">-->
<!-- -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y-->
Expand Down
174 changes: 102 additions & 72 deletions lib/taskana-cdi-example/src/test/resources/int-test-standalone.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private Connection getConnection() throws Exception {
"jdbc:h2:~/taskana-h2-data/testdb;NON_KEYWORDS=KEY,VALUE;AUTO_SERVER=TRUE;"
+ "IGNORECASE=TRUE;LOCK_MODE=0",
"sa",
"");
"sa");
}

private int countTasksByName(String taskName) throws Exception {
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 6.0"/>
<container qualifier="wildfly" default="true">
<configuration>
<property name="jbossHome">target/wildfly-27.0.1.Final</property>
<property name="jbossHome">target/wildfly-31.0.1.Final</property>
<property name="serverConfig">int-test-standalone.xml</property>
<!-- <property name="javaVmArguments">-->
<!-- -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y-->
Expand Down
174 changes: 102 additions & 72 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 @@ -70,7 +70,7 @@
<version.spring.mybatis>3.0.2</version.spring.mybatis>

<!-- wildfly dependencies -->
<version.wildfly>27.0.1.Final</version.wildfly>
<version.wildfly>31.0.1.Final</version.wildfly>

<!-- camunda dependencies -->
<version.camunda.dmn>7.21.0</version.camunda.dmn>
Expand Down
2 changes: 0 additions & 2 deletions rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
<module>../web</module>
<module>taskana-rest-spring-example-common</module>
<module>taskana-rest-spring-example-boot</module>
<!-- enable it, when decission is made how to proceed
<module>taskana-rest-spring-example-wildfly</module>
-->
<module>taskana-rest-spring-test-lib</module>
</modules>

Expand Down
19 changes: 0 additions & 19 deletions rest/taskana-rest-spring-example-wildfly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -239,25 +239,6 @@
</resources>
</configuration>
</execution>
<execution>
<id>copy-documentation-to-static-folder</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.outputDirectory}/static/docs/rest
</outputDirectory>
<resources>
<resource>
<directory>
../taskana-rest-spring/target/generated-docs
</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
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-27.0.1.Final/standalone/log/server.log");
File file = new File("target/wildfly-31.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 6.0"/>
<container qualifier="wildfly" default="true">
<configuration>
<property name="jbossHome">target/wildfly-27.0.1.Final</property>
<property name="jbossHome">target/wildfly-31.0.1.Final</property>
<property name="serverConfig">int-test-standalone.xml</property>
<!-- <property name="javaVmArguments">-->
<!-- &#45;&#45;add-exports=java.naming/com.sun.jndi.ldap=ALL-UNNAMED-->
Expand Down
Loading

0 comments on commit 8bbcda2

Please sign in to comment.