Skip to content

Commit

Permalink
Upgrade to Grace 2023.0.0-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Aug 18, 2024
1 parent e93c1e8 commit 8c76738
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ buildscript {
dependencies {
classpath "io.github.gradle-nexus:publish-plugin:1.3.0"
classpath "org.graceframework:grace-gradle-plugin:$graceVersion"
classpath "org.graceframework.plugins:asset-pipeline-gradle:5.2.7"
classpath "org.graceframework.plugins:asset-pipeline-gradle:6.0.0-RC1"
classpath "com.github.erdi:webdriver-binaries-gradle-plugin:3.2"
classpath "org.graceframework.plugins:database-migration:5.2.7"
classpath "org.graceframework.plugins:database-migration:6.0.0-RC1"
}
}

Expand Down Expand Up @@ -73,9 +73,9 @@ dependencies {
implementation "org.graceframework.plugins:events"
implementation "org.graceframework.plugins:fields"
implementation "org.graceframework.plugins:database-migration"
implementation "org.graceframework.plugins:hibernate5"
implementation "org.graceframework.plugins:hibernate"
profile "org.graceframework.profiles:web"
runtimeOnly "org.graceframework.plugins:asset-pipeline-plugin:5.2.7"
runtimeOnly "org.graceframework.plugins:asset-pipeline-plugin:6.0.0-RC1"
runtimeOnly "com.h2database:h2"
runtimeOnly "org.apache.tomcat:tomcat-jdbc"
testImplementation "org.graceframework:grace-test-support"
Expand All @@ -89,8 +89,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

bootRun {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
projectVersion=0.3.0-SNAPSHOT
graceVersion=2022.2.8
groovyVersion=3.0.22
projectVersion=1.0.0-SNAPSHOT
graceVersion=2023.0.0-RC2
groovyVersion=4.0.22
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1024M
4 changes: 2 additions & 2 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ tasks.withType(org.grails.gradle.plugin.web.gsp.GroovyPageForkCompileTask) {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withJavadocJar()
withSourcesJar()
}
Expand Down
4 changes: 2 additions & 2 deletions plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
projectName=admin
graceVersion=2022.2.8
groovyVersion=3.0.22
graceVersion=2023.0.0-RC2
groovyVersion=4.0.22
exploded=true
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import grails.plugins.descriptors.WebSectionModuleDescriptor
class AdminConsoleGrailsPlugin extends DynamicPlugin {

// the version or versions of Grails the plugin is designed for
def version = '0.3.0-SNAPSHOT'
def grailsVersion = "2022.1.0 > *"
def version = '1.0.0-SNAPSHOT'
def grailsVersion = "2023.0.0 > *"
// def dependsOn = [dynamicModules: '*']
def loadAfter = ['dynamicModules', 'urlMappings']

Expand Down

0 comments on commit 8c76738

Please sign in to comment.