Skip to content

Commit

Permalink
Prep for 3.7 release (#845)
Browse files Browse the repository at this point in the history
* Prep for 3.7 release

* Test on 23.0.0.9
  • Loading branch information
cherylking committed Sep 25, 2023
1 parent bb5e6b5 commit d6a970c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,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 @@ -95,15 +95,15 @@ 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: 8
RUNTIME: wlp
- 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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ buildscript {
}
}
dependencies {
classpath 'io.openliberty.tools:liberty-gradle-plugin:3.6.1'
classpath 'io.openliberty.tools:liberty-gradle-plugin:3.7'
}
}
```
Expand All @@ -73,13 +73,13 @@ buildscript {
mavenLocal()
}
dependencies {
classpath ('io.openliberty.tools:liberty-ant-tasks:1.9.12')
classpath ('io.openliberty.tools:ci.common:1.8.25')
classpath ('io.openliberty.tools:liberty-ant-tasks:1.9.13')
classpath ('io.openliberty.tools:ci.common:1.8.27')
}
}
plugins {
id "io.openliberty.tools.gradle.Liberty" version "3.6.1"
id "io.openliberty.tools.gradle.Liberty" version "3.7"
}
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: "com.gradle.plugin-publish"

archivesBaseName = 'liberty-gradle-plugin'
group = 'io.openliberty.tools'
version = '3.6.3-SNAPSHOT'
version = '3.7-SNAPSHOT'

repositories {
mavenLocal()
Expand Down Expand Up @@ -59,8 +59,8 @@ compileTestGroovy {
targetCompatibility = JavaVersion.VERSION_1_7
}

def libertyAntVersion = "1.9.13-SNAPSHOT"
def libertyCommonVersion = "1.8.27-SNAPSHOT"
def libertyAntVersion = "1.9.13"
def libertyCommonVersion = "1.8.27"

dependencies {
implementation gradleApi()
Expand Down

0 comments on commit d6a970c

Please sign in to comment.