Skip to content

Commit

Permalink
Merge pull request OpenLiberty#1729 from cherylking/prep39release
Browse files Browse the repository at this point in the history
Prep for 3.9 release
  • Loading branch information
cherylking committed Sep 25, 2023
2 parents 92e5fb6 + 256d975 commit 3540af0
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
RUNTIME: [ol, wlp]
RUNTIME_VERSION: [23.0.0.6, 23.0.0.3]
RUNTIME_VERSION: [23.0.0.6, 23.0.0.9]
java: [17, 11, 8]
exclude:
- java: 8
RUNTIME_VERSION: 23.0.0.3
RUNTIME_VERSION: 23.0.0.6
- java: 17
RUNTIME_VERSION: 23.0.0.3
RUNTIME_VERSION: 23.0.0.6
name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Linux
steps:
# Checkout repos
Expand Down Expand Up @@ -76,13 +76,13 @@ jobs:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
RUNTIME: [ol, wlp]
RUNTIME_VERSION: [23.0.0.6, 23.0.0.3]
RUNTIME_VERSION: [23.0.0.6, 23.0.0.9]
java: [17, 11, 8]
exclude:
- java: 8
RUNTIME_VERSION: 23.0.0.3
RUNTIME_VERSION: 23.0.0.6
- java: 17
RUNTIME_VERSION: 23.0.0.3
RUNTIME_VERSION: 23.0.0.6
name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Windows
steps:
# Checkout repos
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ To enable Liberty Maven Plugin in your project add the following to your `pom.xm
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.1</version>
<version>3.9</version>
<!-- Specify configuration, executions for liberty-maven-plugin -->
...
</plugin>
Expand Down Expand Up @@ -104,12 +104,12 @@ Example using the `runtimeArtifact` parameter to install a WebSphere Liberty run
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.1</version>
<version>3.9</version>
<configuration>
<runtimeArtifact>
<groupId>com.ibm.websphere.appserver.runtime</groupId>
<artifactId>wlp-webProfile8</artifactId>
<version>23.0.0.2</version>
<version>23.0.0.9</version>
<type>zip</type>
</runtimeArtifact>
</configuration>
Expand All @@ -124,12 +124,12 @@ Example using the `runtimeArtifact` parameter to install an Open Liberty beta ru
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.1</version>
<version>3.9</version>
<configuration>
<runtimeArtifact>
<groupId>io.openliberty.beta</groupId>
<artifactId>openliberty-runtime</artifactId>
<version>23.0.0.3-beta</version>
<version>23.0.0.10-beta</version>
<type>zip</type>
</runtimeArtifact>
</configuration>
Expand Down Expand Up @@ -238,7 +238,7 @@ Example:
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>[3.8.1,)</version>
<version>3.9</version>
<extensions>true</extensions>
<configuration>
<installDirectory>/opt/ibm/wlp</installDirectory>
Expand Down
2 changes: 1 addition & 1 deletion docs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Dev mode can be run on a single Maven module or on a multi module Maven project

To start dev mode on a multi module project, run the following from the directory containing the multi module `pom.xml`:
```
$ mvn io.openliberty.tools:liberty-maven-plugin:3.4:dev
$ mvn io.openliberty.tools:liberty-maven-plugin:3.9:dev
```

To start dev mode on a multi module project by using the short-form `liberty` name for the Liberty Maven plugin:
Expand Down
2 changes: 1 addition & 1 deletion docs/test-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Example:
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>[3.0.1,)</version>
<version>3.9</version>
<extensions>true</extensions>
<configuration>
<skipTestServer>true</skipTestServer>
Expand Down
2 changes: 1 addition & 1 deletion docs/test-stop.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Example:
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>[3.0.1,)</version>
<version>3.9</version>
<extensions>true</extensions>
<configuration>
<skipTestServer>true</skipTestServer>
Expand Down
4 changes: 2 additions & 2 deletions liberty-maven-app-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.8.3-SNAPSHOT</version>
<version>3.9-SNAPSHOT</version>
</parent>

<artifactId>liberty-maven-app-parent</artifactId>
Expand All @@ -44,7 +44,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.3-SNAPSHOT</version>
<version>3.9-SNAPSHOT</version>
<executions>
<execution>
<id>stop-before-clean</id>
Expand Down
6 changes: 3 additions & 3 deletions liberty-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.8.3-SNAPSHOT</version>
<version>3.9-SNAPSHOT</version>
</parent>

<artifactId>liberty-maven-plugin</artifactId>
Expand Down Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-ant-tasks</artifactId>
<version>1.9.13-SNAPSHOT</version>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -88,7 +88,7 @@
<dependency>
<groupId>io.openliberty.tools</groupId>
<artifactId>ci.common</artifactId>
<version>1.8.27-SNAPSHOT</version>
<version>1.8.27</version>
</dependency>
<dependency>
<groupId>org.twdata.maven</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven</artifactId>
<version>3.8.3-SNAPSHOT</version>
<version>3.9-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Liberty Tools for Maven</name>
<description>
Expand Down

0 comments on commit 3540af0

Please sign in to comment.