Skip to content

Commit 09bb362

Browse files
committed
Versionless feature updates and prep 3.11.0 release
1 parent b5b0586 commit 09bb362

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/maven.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
# test against latest update of each major Java version, as well as specific updates of LTS versions:
2424
RUNTIME: [ol, wlp]
25-
RUNTIME_VERSION: [24.0.0.9]
25+
RUNTIME_VERSION: [24.0.0.10]
2626
java: [21, 17, 11, 8]
2727
exclude:
2828
- java: 8
@@ -48,7 +48,8 @@ jobs:
4848
- name: Checkout ci.common
4949
uses: actions/checkout@v3
5050
with:
51-
repository: OpenLiberty/ci.common
51+
repository: cherylking/ci.common
52+
ref: changeMinVersionForVersionlessFeatures
5253
path: ci.common
5354
- name: Checkout ci.ant
5455
uses: actions/checkout@v3
@@ -80,7 +81,7 @@ jobs:
8081
matrix:
8182
# test against latest update of each major Java version, as well as specific updates of LTS versions:
8283
RUNTIME: [ol, wlp]
83-
RUNTIME_VERSION: [24.0.0.9]
84+
RUNTIME_VERSION: [24.0.0.10]
8485
java: [21, 17, 11, 8]
8586
exclude:
8687
- java: 8
@@ -102,7 +103,7 @@ jobs:
102103
- name: Clone ci.ant, ci.common, ci.maven repos to C drive
103104
run: |
104105
cp -r D:/a/ci.maven/ci.maven C:/ci.maven
105-
git clone https://github.com/OpenLiberty/ci.common.git C:/ci.common
106+
git clone https://github.com/cherylking/ci.common.git --branch changeMinVersionForVersionlessFeatures --single-branch C:/ci.common
106107
git clone https://github.com/OpenLiberty/ci.ant.git C:/ci.ant
107108
- name: Set up Maven
108109
uses: stCarolas/[email protected]

docs/dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The following are the parameters supported by this goal in addition to the [comm
9797

9898
| Parameter | Description | Required |
9999
| -------- | ----------- | ------- |
100-
| changeOnDemandTestsAction | If set to `true`, change the action for running on demand tests from `Enter` to type `t` and press `Enter`. The default value is `false`. This parameter is introduced in version 3.10.4. | No |
100+
| changeOnDemandTestsAction | If set to `true`, change the action for running on demand tests from `Enter` to type `t` and press `Enter`. The default value is `false`. This parameter is introduced in version 3.11. | No |
101101
| compileWait | Time in seconds to wait before processing Java changes. If you encounter compile errors while refactoring, increase this value to allow all files to be saved before compilation occurs. The default value is `0.5` seconds. | No |
102102
| debug | Whether to allow attaching a debugger to the running server. The default value is `true`. | No |
103103
| debugPort | The debug port that you can attach a debugger to. The default value is `7777`. | No |

liberty-maven-app-parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.openliberty.tools</groupId>
2222
<artifactId>liberty-maven</artifactId>
23-
<version>3.10.4-SNAPSHOT</version>
23+
<version>3.11-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>liberty-maven-app-parent</artifactId>
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>io.openliberty.tools</groupId>
4646
<artifactId>liberty-maven-plugin</artifactId>
47-
<version>3.10.4-SNAPSHOT</version>
47+
<version>3.11-SNAPSHOT</version>
4848
<executions>
4949
<execution>
5050
<id>stop-before-clean</id>

liberty-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.openliberty.tools</groupId>
88
<artifactId>liberty-maven</artifactId>
9-
<version>3.10.4-SNAPSHOT</version>
9+
<version>3.11-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>liberty-maven-plugin</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>io.openliberty.tools</groupId>
1414
<artifactId>liberty-maven</artifactId>
15-
<version>3.10.4-SNAPSHOT</version>
15+
<version>3.11-SNAPSHOT</version>
1616
<packaging>pom</packaging>
1717
<name>Liberty Tools for Maven</name>
1818
<description>
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>org.apache.maven.plugins</groupId>
6969
<artifactId>maven-invoker-plugin</artifactId>
70-
<version>3.6.0</version>
70+
<version>3.8.0</version>
7171
</plugin>
7272
<plugin>
7373
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)