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
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ asciidoctorGradlePluginVersion=4.0.4
casClientCoreVersion=4.0.4
commonsLangVersion=2.6
dumbsterVersion=1.6
gbenchVersion=0.4.3-groovy-2.4
gradleCryptoChecksumVersion=1.4.0
grailsRedisVersion=5.0.0-RC2
guavaVersion=33.3.1-jre
mailVersion=5.0.0
micronautVersion=4.5.3
nimbusVersion=9.42
pac4jVersion=6.0.6
ratVersion=0.8.1
scribejavaVersion=8.3.3
spyMemcachedVersion=2.12.3

# This prevents the Grails Gradle Plugin from unnecessarily excluding slf4j-simple in the generated POMs
Expand Down
4 changes: 4 additions & 0 deletions plugin-acl/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ ext {
pomDevelopers = ['burtbeckwith': 'Burt Beckwith']
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-cas/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ ext {
pomDevelopers = ['burtbeckwith': 'Burt Beckwith']
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-core/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-ldap/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ ext {
pomDevelopers = [burtbeckwith: 'Burt Beckwith']
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
6 changes: 5 additions & 1 deletion plugin-oauth2/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand All @@ -46,7 +50,7 @@ dependencies {
// impl: GormUserDetailsService, GrailsUser, ReflectionUtils, @Secured(runtime), SecurityContextHolder,
// SpringSecurityUtils
}
api 'com.github.scribejava:scribejava-core:8.3.3', {
api "com.github.scribejava:scribejava-core:$scribejavaVersion", {
// api: DefaultApi20, OAuth2AccessToken, OAuth20Service, Response
// impl: OAuthRequest, ServiceBuilder, Verb
}
Expand Down
4 changes: 4 additions & 0 deletions plugin-rest/spring-security-rest-gorm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-rest/spring-security-rest-grailscache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-rest/spring-security-rest-memcached/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
4 changes: 4 additions & 0 deletions plugin-rest/spring-security-rest-redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
10 changes: 7 additions & 3 deletions plugin-rest/spring-security-rest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ ext {
]
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand All @@ -43,7 +47,7 @@ dependencies {
// api: NullAuthenticationEventPublisher, SecurityEventListener
// impl: BeanTypeResolver, @Secured(runtime), SecurityFilterPosition, SpringSecurityUtils
}
api 'com.nimbusds:nimbus-jose-jwt:9.42', {
api "com.nimbusds:nimbus-jose-jwt:$nimbusVersion", {
// api: EncryptionMethod, JOSEException, JWEAlgorithm, JWSAlgorithm, JWSSigner, JWT, JWTClaimsSet
// impl: EncryptedJWT, EncryptionMethod, JWEHeader, JWSHeader, JWTParser, MACSigner, MACVerifier, PlainJWT, RSADecrypter, RSAEncrypter, SignedJWT
}
Expand Down Expand Up @@ -86,7 +90,7 @@ dependencies {
implementation "org.apache.commons:commons-lang3", {
// impl: RandomStringUtils
}
implementation 'com.google.guava:guava:33.3.1-jre', {
implementation "com.google.guava:guava:$guavaVersion", {
// impl: CacheBuilder, LoadingCache
}
implementation 'commons-codec:commons-codec', {
Expand Down Expand Up @@ -121,7 +125,7 @@ dependencies {
testImplementation "org.pac4j:pac4j-oauth:$pac4jVersion", {
// impl: CasOAuthWrapperClient
}
testImplementation 'org.gperfutils:gbench:0.4.3-groovy-2.4'
testImplementation "org.gperfutils:gbench:$gbenchVersion"
testImplementation 'org.apache.grails:grails-testing-support-datamapping'
testImplementation 'org.apache.grails:grails-testing-support-web'
testImplementation 'org.spockframework:spock-core'
Expand Down
4 changes: 4 additions & 0 deletions plugin-ui/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ ext {
pomDevelopers = [burtbeckwith: 'Burt Beckwith']
}

grails {
springDependencyManagement = false
}

dependencies {

implementation platform("org.apache.grails:grails-bom:$grailsVersion")
Expand Down
Loading