Skip to content

Commit

Permalink
Merge pull request #4144 from jamezp/managed-beans
Browse files Browse the repository at this point in the history
Add a profile for ignoring @ManagedBean support for WildFly Preview. …
  • Loading branch information
jamezp committed Apr 19, 2024
2 parents b7fc232 + 79757b7 commit 96a1e5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions testsuite/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,16 @@
<server.test.feature.pack.artifactId>wildfly-preview-feature-pack</server.test.feature.pack.artifactId>
<server.test.feature.pack.version>${version.org.wildfly}</server.test.feature.pack.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludedGroups>managed-bean-support-required</excludedGroups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>provision-without-resteasy</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.wildfly.testing.tools.deployments.DeploymentDescriptors;
Expand All @@ -33,6 +34,7 @@
@ExtendWith(ArquillianExtension.class)
@RunAsClient
@ServerSetup(LoggingSetupTask.class)
@Tag("managed-bean-support-required")
public class ManagedBeanValidationTest {

private static Client client;
Expand Down

0 comments on commit 96a1e5e

Please sign in to comment.