Skip to content

Commit 416eec0

Browse files
committed
upgrade to Java 17
1 parent 8c7a021 commit 416eec0

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

Diff for: .github/renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
{
1616
"matchPackagePatterns": [
17-
"^org\\.codehaus\\.groovy"
17+
"^org\\.apache\\.groovy"
1818
],
1919
"groupName": "groovy monorepo"
2020
},

Diff for: .github/workflows/gradle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: true
2121
matrix:
22-
java: [11, 17]
22+
java: [17]
2323

2424
steps:
2525
- uses: actions/checkout@v4

Diff for: .github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ on:
33
release:
44
types: [published]
55
env:
6-
GIT_USER_NAME: puneetbehl
7-
GIT_USER_EMAIL: [email protected]
6+
GIT_USER_NAME: 'grails-build'
7+
GIT_USER_EMAIL: '[email protected]'
88

99
jobs:
1010
release:
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: gradle/wrapper-validation-action@v2
1616
- uses: actions/setup-java@v4
17-
with: { java-version: 11, distribution: temurin }
17+
with: { java-version: 17, distribution: temurin }
1818

1919
- name: Get the current release version
2020
id: release_version

Diff for: gradle/buildsrc.libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
grails-gradle-plugin = '6.1.2'
2+
grails-gradle-plugin = '7.0.0-SNAPSHOT'
33
nexus-publish-gradle-plugin = '1.3.0'
44

55
[libraries]

Diff for: gradle/java-config.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
java {
2-
sourceCompatibility = JavaVersion.VERSION_11
2+
sourceCompatibility = JavaVersion.VERSION_17
33
withSourcesJar()
44
withJavadocJar()
55
}

Diff for: gradle/libs.versions.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
grails = '6.1.2'
3-
groovy = '3.0.21'
2+
grails = '7.0.0-SNAPSHOT'
3+
groovy = '4.0.24'
44
javax-annotation-api = '1.3.2'
55
quartz = '2.3.2'
66
slf4j = '1.7.36'
@@ -11,9 +11,9 @@ spock = '2.3-groovy-3.0'
1111
grails-bootstrap = { group = 'org.grails', name = 'grails-bootstrap', version.ref = 'grails' }
1212
grails-core = { group = 'org.grails', name = 'grails-core', version.ref = 'grails' }
1313
grails-docs = { group = 'org.grails', name = 'grails-docs', version.ref = 'grails' }
14-
groovy-core = { group = 'org.codehaus.groovy', name = 'groovy', version.ref = 'groovy' }
15-
groovy-sql = { group = 'org.codehaus.groovy', name = 'groovy-sql', version.ref = 'groovy' }
16-
groovy-templates = { group = 'org.codehaus.groovy', name = 'groovy-templates', version.ref = 'groovy' }
14+
groovy-core = { group = 'org.apache.groovy', name = 'groovy', version.ref = 'groovy' }
15+
groovy-sql = { group = 'org.apache.groovy', name = 'groovy-sql', version.ref = 'groovy' }
16+
groovy-templates = { group = 'org.apache.groovy', name = 'groovy-templates', version.ref = 'groovy' }
1717
javax-annotation-api = { module = 'javax.annotation:javax.annotation-api', version.ref = 'javax-annotation-api' }
1818
quartz = { group = 'org.quartz-scheduler', name = 'quartz', version.ref = 'quartz' }
1919
slf4j-nop = { group = 'org.slf4j', name = 'slf4j-nop', version.ref = 'slf4j' }

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

Diff for: src/docs/guide/configuration.gdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ static description = "Example Job Description"
5555

5656
h4. Clustering
5757

58-
Quartz plugin doesn't support clustering out-of-the-box now. However, you could use standard Quartz clustering configuration. Take a look at the [example provided by Burt Beckwith|http://docs.codehaus.org/download/attachments/78053/clustering_sample.tar.gz?version=1]. You'll also need to set jdbcStore configuration option to true .
58+
Quartz plugin doesn't support clustering out-of-the-box now. However, you could use standard Quartz clustering configuration. Take a look at the [example provided by Burt Beckwith|http://docs.apache.org/download/attachments/78053/clustering_sample.tar.gz?version=1]. You'll also need to set jdbcStore configuration option to true .
5959

6060
There are also two parameters for configuring store/clustering on jobs ( volatility and durability , both are true by default) and one for triggers ( volatility , also true by default). Volatile job and trigger will not persist between Quartz runs, and durable job will live even when there is no triggers referring to it.
6161

0 commit comments

Comments
 (0)