Skip to content

1.9.0.Final

Compare
Choose a tag to compare
@starksm64 starksm64 released this 09 Jul 04:58

What's Changed

  • [ARQ-2230] Integrate the checkstyle plugin by @petrberan in #540
  • ARQ-2236 arquillian-bom manages non-existent versions of artifacts fr… by @rhusar in #574
  • Revert "Force cleanup of ThreadLocal" by @jamezp in #579
  • [576] Add back the afterAll and beforeEach callbacks. The TestRu… by @jamezp in #577
  • ARQ-2231 The JUnit 5 container does not work with manual mode tests by @rhusar in #583
  • Disable MultiThreadedBuilder by default. by @rhusar in #582
  • build(deps): Bump version.junit5 from 5.10.2 to 5.10.3 by @dependabot in #571
  • Correct the javadoc references to @OperateOnDeployment by @starksm64 in #589
  • [580] Create some integration tests. Create profiles for WildFly to r… by @jamezp in #581
  • ARQ-2235 arquillian-bom should not include Maven artifacts not produced by this project by @rhusar in #575
  • build(deps): Bump version.junit5.platform from 1.10.1 to 1.10.3 by @dependabot in #570
  • build(deps-dev): Bump org.testng:testng from 7.5 to 7.5.1 in /integration-tests/testng-tests by @dependabot in #590

Full Changelog: 1.8.1.Final...1.9.0.Final

The #574 issue changes how one must import arquillian-core, arquillian-jakarta and shrinkwrap dependencies. Since they are independent now, the following type of imports are required:

      <dependencyManagement>
            <dependency>
                <groupId>org.junit</groupId>
                <artifactId>junit-bom</artifactId>
                <version>5.10.1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.shrinkwrap.resolver</groupId>
                <artifactId>shrinkwrap-resolver-bom</artifactId>
                <version>${version.shrinkwrap}</version>
                <scope>test</scope>
                <type>pom</type>
            </dependency>
            <dependency>
                <groupId>org.jboss.shrinkwrap.resolver</groupId>
                <artifactId>shrinkwrap-resolver-depchain</artifactId>
                <version>${version.shrinkwrap}</version>
                <type>pom</type>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.arquillian</groupId>
                <artifactId>arquillian-bom</artifactId>
                <version>${version.arquillian_core}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.jboss.arquillian.jakarta</groupId>
                <artifactId>arquillian-jakarta-bom</artifactId>
                <version>${version.arquillian_jakarta}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
    </dependencyManagement>