Skip to content

Commit 1d325e3

Browse files
committed
build(deps): set correct grails-core testImplementation dependencies
1 parent d8d8ca2 commit 1d325e3

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

grails-datastore-gorm-tck/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies {
5353
}
5454

5555
implementation 'org.grails:grails-core', {
56-
// impl: ValidationException
56+
// impl: Entity, ValidationException
5757
if (excludeUnusedTransDeps) {
5858
// API dependencies in grails-core
5959
exclude group: 'jakarta.annotation', module: 'jakarta.annotation-api'

grails-datastore-gorm-test/build.gradle

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,11 @@ dependencies {
6262
// api: SelectClasses, Suite
6363
}
6464
testImplementation project(':grails-datastore-gorm-tck')
65-
/*
66-
testCompileOnly 'org.grails:grails-core', {
67-
// api: Entity
68-
// impl: ValidationException
65+
testImplementation 'org.grails:grails-core', {
66+
// impl: Entity. ValidationException
6967
if (excludeUnusedTransDeps) {
7068
// API dependencies in grails-core
71-
//exclude group: 'jakarta.annotation', module: 'jakarta.annotation-api' // PostConstruct
69+
exclude group: 'jakarta.annotation', module: 'jakarta.annotation-api'
7270
exclude group: 'jakarta.inject', module: 'jakarta.inject-api'
7371
exclude group: 'jakarta.persistence', module: 'jakarta.persistence-api'
7472
//exclude group: 'org.grails', module: 'grails-bootstrap' // Resource
@@ -82,7 +80,6 @@ dependencies {
8280
exclude group: 'org.springframework.boot', module: 'spring-boot-autoconfigure'
8381
}
8482
}
85-
*/
8683
testImplementation 'org.spockframework:spock-core'
8784

8885
// Commented out since we aren't building / publishing

0 commit comments

Comments
 (0)