Skip to content

Commit 4c656d1

Browse files
committed
Update target containers to test against WFLY 21.0.1.Final
1 parent 1f773f3 commit 4c656d1

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest, windows-latest ]
2323
java: ['1.8', '11']
24-
wildfly-version: ['20.0.1.Final', '21.0.0.Final']
24+
wildfly-version: ['20.0.1.Final', '21.0.1.Final']
2525

2626
steps:
2727
- uses: actions/checkout@v2

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ language: java
77
jdk:
88
- openjdk8
99
env:
10-
- SERVER_VERSION=21.0.0.Final ELYTRON=true
11-
- SERVER_VERSION=21.0.0.Final STANDALONE_MICROPROFILE=true
10+
- SERVER_VERSION=21.0.1.Final ELYTRON=true
11+
- SERVER_VERSION=21.0.1.Final STANDALONE_MICROPROFILE=true
1212
jobs:
1313
addons:
1414
hosts:

testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/cache/ServerCacheInterceptorTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import org.jboss.arquillian.junit.Arquillian;
1010
import org.jboss.resteasy.category.ExpectedFailingOnWildFly19;
1111
import org.jboss.resteasy.category.NotForBootableJar;
12-
import org.jboss.resteasy.category.ExpectedFailingOnWildFly21;
1312
import org.jboss.resteasy.client.jaxrs.ResteasyClient;
1413
import org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder;
1514
import org.jboss.resteasy.plugins.cache.server.InfinispanCache;
@@ -42,7 +41,6 @@
4241
@RunAsClient
4342
@Category({
4443
ExpectedFailingOnWildFly19.class,
45-
ExpectedFailingOnWildFly21.class, //Remove ExpectedFailingOnWildFly21 after https://issues.redhat.com/browse/WFLY-13988 is resolved
4644
NotForBootableJar.class // related resteasy-cache-core module is not delivered by WF, so it's not necessary to check it with bootable jar
4745
})
4846
public class ServerCacheInterceptorTest {

testsuite/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@
147147
</property>
148148
</activation>
149149
<properties>
150-
<server.version>20.0.1.Final</server.version>
150+
<server.version>21.0.1.Final</server.version>
151151
</properties>
152152
</profile>
153153
<profile>
154154
<id>server-version-21x-exclusions</id>
155155
<activation>
156156
<property>
157157
<name>server.version</name>
158-
<value>21.0.0.Final</value>
158+
<value>21.0.1.Final</value>
159159
</property>
160160
</activation>
161161
<properties>

0 commit comments

Comments
 (0)