-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from grails/jamesfredley/grails-7
Update to Grails 7, Java 17, Gradle 8.10.2, Geb 7.0 and Groovy 4.0.23
- Loading branch information
Showing
9 changed files
with
66 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Run Build | ||
id: build | ||
uses: gradle/gradle-build-action@v2 | ||
|
@@ -37,8 +37,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '8' | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Publish to repo.grails.org | ||
uses: gradle/gradle-build-action@v2 | ||
env: | ||
|
@@ -68,5 +68,5 @@ jobs: | |
BRANCH: gh-pages | ||
FOLDER: build/docs | ||
DOC_FOLDER: gh-pages | ||
COMMIT_EMAIL: behlp@objectcomputing.com | ||
COMMIT_NAME: Puneet Behl | ||
COMMIT_EMAIL: '[email protected].com' | ||
COMMIT_NAME: 'grails-build' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,9 @@ on: | |
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: ['8'] | ||
env: | ||
GIT_USER_NAME: puneetbehl | ||
GIT_USER_EMAIL: behlp@objectcomputing.com | ||
GIT_USER_NAME: 'grails-build' | ||
GIT_USER_EMAIL: '[email protected].com' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
@@ -20,8 +17,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
distribution: 'temurin' | ||
java-version: 17 | ||
- name: Set the current release version | ||
id: release_version | ||
run: echo ::set-output name=release_version::${GITHUB_REF:11} | ||
|
@@ -64,8 +61,8 @@ jobs: | |
BRANCH: gh-pages | ||
FOLDER: build/docs | ||
DOC_FOLDER: gh-pages | ||
COMMIT_EMAIL: [email protected] | ||
COMMIT_NAME: Puneet Behl | ||
COMMIT_EMAIL: ${{ env.GIT_USER_EMAIL }} | ||
COMMIT_NAME: ${{ env.GIT_USER_NAME }} | ||
VERSION: ${{ steps.release_version.outputs.release_version }} | ||
- name: Run post-release | ||
if: success() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
title=Grails Geb Plugin | ||
projectVersion=5.0.0-SNAPSHOT | ||
developers=Puneet Behl | ||
grailsVersion=5.3.5 | ||
grailsGradlePluginVersion=5.3.1 | ||
groovyVersion=3.0.11 | ||
gebSpock=5.1 | ||
grailsVersion=7.0.0-SNAPSHOT | ||
grailsGradlePluginVersion=7.0.0-SNAPSHOT | ||
groovyVersion=4.0.23 | ||
gebSpock=7.0 | ||
javaParserCoreVersion=3.25.10 | ||
org.gradle.parallel=true | ||
org.gradle.caching=true | ||
org.gradle.daemon=true |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,11 @@ import groovy.transform.CompileStatic | |
@PluginSource | ||
@CompileStatic | ||
class GebGrailsPlugin extends Plugin { | ||
def grailsVersion = "5.1.0 > *" | ||
def pluginExcludes = [ | ||
"grails-app/views/error.gsp" | ||
] | ||
def grailsVersion = "7.0.0 > *" | ||
def pluginExcludes = [] | ||
def title = "Grails Geb Plugin" | ||
def author = "Graeme Rocher" | ||
def authorEmail = "[email protected]" | ||
def authorEmail = "" | ||
def description = '''\ | ||
Plugin that adds Geb functional testing code generation features. | ||
''' | ||
|