Skip to content

Commit

Permalink
Specified specific scaffold version
Browse files Browse the repository at this point in the history
  • Loading branch information
sbglasius committed Jan 2, 2024
1 parent 86993cb commit a95eab9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
compileOnly "org.grails:grails-web-boot"
compileOnly "org.grails:grails-dependencies"

implementation "org.grails:scaffolding-core"
implementation "org.grails:scaffolding-core:$grailsScaffoldingVersion"

testImplementation "org.grails:grails-web-testing-support"
testImplementation "org.grails:grails-gorm-testing-support"
Expand All @@ -55,13 +55,13 @@ dependencies {
}
}

tasks.withType(GroovyCompile) {
tasks.withType(GroovyCompile).configureEach {
configure(groovyOptions) {
forkOptions.jvmArgs = ['-Xmx1024m']
}
}

tasks.withType(Test) {
tasks.withType(Test).configureEach {
useJUnitPlatform()
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
version=4.0.1-SNAPSHOT
grailsVersion=5.3.5
grailsGradlePluginVersion=5.3.1
grailsScaffoldingVersion=2.1.0
joddWotVersion=3.3.8
asciidoc=true
githubSlug=gpc/fields
Expand Down

0 comments on commit a95eab9

Please sign in to comment.