Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ext {
'asciidoctor-gradle-jvm.version': '4.0.5',
'asciidoctorj.version' : '3.0.0',
'asset-pipeline-gradle.version' : '5.1.0-M4',
'byte-buddy.version' : '1.18.8',
'byte-buddy.version' : '1.18.10',
'commons-text.version' : '1.15.0',
'directory-watcher.version' : '0.19.1',
'gradle-groovy.version' : '4.0.32',
Expand All @@ -39,7 +39,7 @@ ext {
'jna.version' : '5.18.1',
'jquery.version' : '3.7.1',
'objenesis.version' : '3.4',
'spring-boot.version' : '4.1.0-RC1',
'spring-boot.version' : '4.1.0',
]

// Note: the name of the dependency must be the prefix of the property name so properties in the pom are resolved correctly
Expand Down Expand Up @@ -86,7 +86,7 @@ ext {
'jakarta-validation.version': '3.1.1',
'jquery.version' : '3.7.1',
'junit.version' : '6.0.3',
'mongodb.version' : '5.7.0-beta1',
'mongodb.version' : '5.8.0',
'rxjava.version' : '1.3.8',
'rxjava2.version' : '2.2.21',
'rxjava3.version' : '3.1.12',
Expand Down
6 changes: 4 additions & 2 deletions grails-shell-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ dependencies {
api 'org.apache.ant:ant'
api 'org.fusesource.jansi:jansi'
api 'org.jline:jline'
api "org.gradle:gradle-tooling-api:$gradleToolingApiVersion"
api("org.gradle:gradle-tooling-api:$gradleToolingApiVersion") {
exclude group: 'org.slf4j', module: 'slf4j-api'
}

compileOnly 'org.springframework.boot:spring-boot'
compileOnly 'org.springframework.boot:spring-boot-loader-tools'
Expand Down Expand Up @@ -160,4 +162,4 @@ tasks.named('startScripts').configure { it ->
File win = batFile.get().asFile
win.text = win.text.replaceFirst(/(?m)^set CLASSPATH=.*$/,'set CLASSPATH=%APP_HOME%\\\\lib\\\\*')
}
}
}
Loading