Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions grails-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,33 @@ version = projectVersion
group = 'org.apache.grails.common'

dependencies {
// WARNING: This project is not to depend on grails-core.
// It is meant to be a shared library that can be used
// independently of Grails.
// Mainly to share data between Grails & GORM

implementation platform(project(':grails-bom'))

api 'org.apache.grails.gradle:grails-gradle-common'

// WARNING: this file is not to depend on grails-core; it is meant to be a shared library that can be used
// independently of Grails. Mainly to share data between Grails & GORM
api 'org.apache.groovy:groovy'
api 'org.slf4j:jcl-over-slf4j'
api 'org.slf4j:slf4j-api'
api 'org.springframework:spring-context', {
// api: MessageSource
}

// the annotation metadata readers are used by both GORM & grails-core so it can be placed in a shared build
implementation 'org.springframework:spring-core'

api 'org.apache.groovy:groovy'

testImplementation 'org.apache.groovy:groovy-test-junit5'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.platform:junit-platform-runner'
testImplementation 'org.slf4j:slf4j-simple'
testImplementation 'org.spockframework:spock-core', {
transitive = false
}

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'

// Logging
api 'org.slf4j:slf4j-api'
api 'org.slf4j:jcl-over-slf4j'

// Testing
testImplementation 'org.slf4j:slf4j-simple'
testImplementation('org.spockframework:spock-core') { transitive = false }
}

apply {
Expand Down
Loading