Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Build against Grails 2022.0.0 snapshots
Browse files Browse the repository at this point in the history
* GORM 7.2.2-SNAPSHOT
  • Loading branch information
rainboyan committed Nov 10, 2022
1 parent b2b5b21 commit b9e78b5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 17 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ buildscript {
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://repo.gradle.org/gradle/libs-releases' }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "org.grails:grails-docs:${project.ext.properties.grailsDocsVersion ?: grailsVersion}"
classpath "io.github.gradle-nexus:publish-plugin:1.1.0"
}
Expand Down Expand Up @@ -66,8 +67,8 @@ subprojects {
apply plugin: 'checkstyle'
apply plugin: 'codenarc'

sourceCompatibility = "1.8"
targetCompatibility = "1.8"
sourceCompatibility = 11
targetCompatibility = 11

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
Expand Down
11 changes: 4 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
title=Groovy Server Pages (GSP)
authors=Graeme Rocher
projectVersion=5.2.2-SNAPSHOT
projectVersion=2022.0.0-SNAPSHOT
projectDesc=GSP (Groovy Server Pages) - A server-side view rendering technology based on Groovy
projectUrl=https://github.com/grails/grails-gsp
githubSlug=grails/grails-gsp
githubBranch=5.2.x
githubBranch=2022.0.x
developers=Graeme Rocher
datastoreVersion=7.2.1
grailsGradlePluginVersion=5.1.5
grailsVersion=5.1.9
datastoreVersion=7.2.2-SNAPSHOT
grailsVersion=2022.0.0-SNAPSHOT
groovyVersion=3.0.13
servletApiVersion=4.0.1
javaParserCoreVersion=3.15.14
Expand All @@ -23,8 +22,6 @@ slf4jVersion=1.7.36
antVersion=1.10.12
controllersRef=https://docs.grails.org/latest/ref/Controllers
commandLineRef=https://docs.grails.org/latest/ref/Command%20Line
grailsDocsVersion=5.0.2
testingSupportVersion=2.6.1
sitemeshVersion=2.4.2
junit-jupiter.version=5.8.2

Expand Down
9 changes: 2 additions & 7 deletions grails-plugin-gsp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,12 @@ dependencies {

runtimeOnly(project(":grails-web-jsp"))
api "commons-lang:commons-lang:2.6"
api "org.grails:grails-plugin-api:$grailsVersion"
api "org.grails:grails-plugin-codecs:$grailsVersion"
astImplementation "org.grails:grails-web:$grailsVersion"
astImplementation "org.grails:grails-plugin-controllers:$grailsVersion"

testImplementation "org.grails:grails-web-testing-support:$testingSupportVersion", {
exclude module:'async'
}
testImplementation "org.grails:grails-testing-support:$testingSupportVersion", {
exclude module:'async'
}
testImplementation "org.grails:grails-gorm-testing-support:$testingSupportVersion", {
testImplementation "org.grails:grails-test-support:$grailsVersion", {
exclude module:'async'
}

Expand Down

0 comments on commit b9e78b5

Please sign in to comment.