Skip to content

Commit

Permalink
Merge pull request #26 from cherylking/updateDep
Browse files Browse the repository at this point in the history
Update several dependencies
  • Loading branch information
cherylking committed Apr 26, 2023
2 parents ea47398 + 856a877 commit bb2ec65
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In order to prevent dependency conflicts, you'll need to use the `arquillian-bom
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>1.7.0.Alpha13</version>
<version>1.7.0.Alpha14</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -47,7 +47,7 @@ In order to prevent dependency conflicts, you'll need to use the `arquillian-bom
<dependency>
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-liberty-managed-jakarta-junit</artifactId>
<version>2.1.0</version>
<version>2.1.2</version>
<type>pom</type>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -119,11 +119,11 @@ Step 3: Add a `dependencyManagement` block that contains the `arquillian-bom`:
```
dependencyManagement {
imports {
mavenBom "org.jboss.arquillian:arquillian-bom:1.7.0.Alpha13"
mavenBom "org.jboss.arquillian:arquillian-bom:1.7.0.Alpha14"
}
}
```

You can use the command `gradle dependencies` to view transitive dependencies and their versions.

The previous example uses version `1.7.0.Alpha13` of the `arquillian-bom` for Jakarta EE 9 projects. If using Java EE 8 or below, use version `1.1.13.Final` of the `arquillian-bom`. A full Gradle example with Jakarta EE 9 is available in the `gradle-tests` folder.
The previous example uses version `1.7.0.Alpha14` of the `arquillian-bom` for Jakarta EE 9 projects. If using Java EE 8 or below, use version `1.1.13.Final` of the `arquillian-bom`. A full Gradle example with Jakarta EE 9 is available in the `gradle-tests` folder.
2 changes: 1 addition & 1 deletion gradle-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ subprojects {

dependencyManagement {
imports {
mavenBom "org.jboss.arquillian:arquillian-bom:1.7.0.Alpha13"
mavenBom "org.jboss.arquillian:arquillian-bom:1.7.0.Alpha14"
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle-tests/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dependencyBundleVersion=2.1.2-SNAPSHOT
dependencyBundleVersion=2.1.3-SNAPSHOT
2 changes: 1 addition & 1 deletion gradle-tests/olTest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
libertyRuntime group: 'io.openliberty', name: 'openliberty-runtime', version: '22.0.0.9'
libertyRuntime group: 'io.openliberty', name: 'openliberty-runtime', version: '22.0.0.12'
}
2 changes: 1 addition & 1 deletion gradle-tests/wlpTest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
libertyRuntime group: 'com.ibm.websphere.appserver.runtime', name: 'wlp-webProfile9', version: '22.0.0.9'
libertyRuntime group: 'com.ibm.websphere.appserver.runtime', name: 'wlp-webProfile9', version: '22.0.0.12'
}
2 changes: 1 addition & 1 deletion it/managed-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>1.7.0.Alpha13</version>
<version>1.7.0.Alpha14</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>1.7.0.Alpha13</version>
<version>1.7.0.Alpha14</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -55,17 +55,17 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<liberty.arquillian.groupId>io.openliberty.arquillian</liberty.arquillian.groupId>
<liberty.arquillian.version>2.1.1</liberty.arquillian.version>
<liberty.arquillian.version>2.1.2</liberty.arquillian.version>
<liberty.managed.artifactId>arquillian-liberty-managed-jakarta</liberty.managed.artifactId>
<liberty.remote.artifactId>arquillian-liberty-remote-jakarta</liberty.remote.artifactId>

<junit.version>4.13.2</junit.version>
<junit5.version>5.9.0</junit5.version>
<testng.version>6.13.1</testng.version>
<testng.version>7.5.1</testng.version>
</properties>

<modules>
Expand Down

0 comments on commit bb2ec65

Please sign in to comment.