Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 644c4f2

Browse files
authored
Change Min Source Java Compatibility to 11 (#684)
* Change Min Source Java Compatibility to 11 * Update to Grails 6 SNAPSHOT * Update Micronaut Version
1 parent a6aa175 commit 644c4f2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
java: ['8', '11', '14']
21+
java: ['11', '14']
2222
env:
2323
WORKSPACE: ${{ github.workspace }}
2424
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: ['8']
10+
java: ['11']
1111
env:
1212
GIT_USER_NAME: puneetbehl
1313
GIT_USER_EMAIL: [email protected]

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ subprojects { Project subproject ->
213213
apply plugin: 'signing'
214214
apply plugin: "org.gradle.test-retry"
215215

216-
sourceCompatibility = "1.8"
217-
targetCompatibility = "1.8"
216+
sourceCompatibility = "1.11"
217+
targetCompatibility = "1.11"
218218

219219
dependencies {
220220
documentation "org.fusesource.jansi:jansi:$jansiVersion"

examples/spring-boot-hibernate5/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ buildscript {
1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313
apply plugin:"groovy"
14-
sourceCompatibility = 1.8
15-
targetCompatibility = 1.8
14+
sourceCompatibility = 1.11
15+
targetCompatibility = 1.11
1616

1717
group 'examples'
1818

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ assetPipelineVersion=3.3.4
22
chromeDriverVersion=2.44
33
gebVersion=2.3
44
geckodriverVersion=0.23.0
5-
gormVersion=7.3.2
6-
grailsGradlePluginVersion=5.1.4
5+
gormVersion=8.0.0-M1
6+
grailsGradlePluginVersion=6.0.0-SNAPSHOT
77
groovyVersion=3.0.11
88
h2Version=1.4.200
99
hibernate5Version=5.6.11.Final
@@ -13,11 +13,11 @@ jansiVersion=2.4.0
1313
javaParserCoreVersion=3.23.0
1414
jaxbVersion=2.3.1
1515
junitJupiterVersion=5.9.1
16-
micronautVersion=3.2.0
17-
micronautSpringVersion=4.0.1
16+
micronautVersion=3.8.8
17+
micronautSpringVersion=4.5.1
1818
picocliVersion=4.6.3
1919
projectVersion=7.3.1-SNAPSHOT
20-
pluginGrailsVersion=5.1.8
20+
pluginGrailsVersion=6.0.0-M2
2121
seleniumSafariDriverVersion=3.14.0
2222
seleniumVersion=3.14.0
2323
servletApiVersion=4.0.1
@@ -32,7 +32,7 @@ webdriverBinariesVersion=1.4
3232

3333
# Following are used only for example projects
3434
fieldsVersion=3.0.0.RC1
35-
grailsVersion=5.1.8
35+
grailsVersion=6.0.0-SNAPSHOT
3636
micrometer.version=1.8.0
3737
scaffoldingVersion=4.1.0
3838
testingSupportVersion=2.6.1

0 commit comments

Comments
 (0)