Skip to content

Commit 780b6e5

Browse files
authored
Adjust dependency scope and add additional dependencies (#60)
* Adjust dependency scope and add additional dependencies required by generated tests
1 parent 5397bdf commit 780b6e5

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ configurations {
3030
}
3131

3232
dependencies {
33-
api "org.grails:grails-core:$grailsVersion"
34-
api "org.gebish:geb-spock:$gebSpock", {
35-
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
36-
}
33+
compileOnly "org.grails:grails-core:$grailsVersion"
34+
35+
// used transitively by the generated tests
36+
api "org.gebish:geb-spock:$gebSpock"
37+
api "org.grails:grails-testing-support:$testingSupportVersion"
38+
api "org.grails:grails-datastore-gorm:$datastoreVersion"
39+
3740
documentation "org.apache.groovy:groovy:$groovyVersion"
3841
documentation "org.apache.groovy:groovy-ant:$groovyVersion"
3942
documentation "org.apache.groovy:groovy-templates:$groovyVersion"

gradle.properties

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
title=Grails Geb Plugin
21
projectVersion=5.0.0-SNAPSHOT
2+
title=Grails Geb Plugin
33
developers=Puneet Behl
4+
5+
datastoreVersion=9.0.0-SNAPSHOT
6+
gebSpock=7.0
47
grailsVersion=7.0.0-SNAPSHOT
58
grailsGradlePluginVersion=7.0.0-SNAPSHOT
69
groovyVersion=4.0.23
7-
gebSpock=7.0
810
javaParserCoreVersion=3.25.10
11+
testingSupportVersion=4.0.0-SNAPSHOT
12+
913
org.gradle.parallel=true
1014
org.gradle.caching=true
1115
org.gradle.daemon=true

0 commit comments

Comments
 (0)