Skip to content

Commit

Permalink
polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
pniederw committed Apr 3, 2011
1 parent 8e47639 commit eae1e36
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ include 'spock-specs'
include 'spock-spring'
include 'spock-tapestry'
include 'spock-unitils'
include 'spock-grails-support'
include 'spock-grails'
include 'spock-grails-support'
15 changes: 7 additions & 8 deletions spock-grails-support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ repositories {
}

dependencies {
compile \
"org.grails:grails-core:${grailsVersion}",
"org.grails:grails-test:${grailsVersion}",
"org.grails:grails-web:${grailsVersion}",
"org.apache.ant:ant-junit:1.7.1",
"org.apache.tomcat:servlet-api:6.0.29",
libs.slf4j
compile "org.grails:grails-core:${grailsVersion}"
compile "org.grails:grails-test:${grailsVersion}"
compile "org.grails:grails-web:${grailsVersion}"
compile "org.apache.ant:ant-junit:1.7.1"
compile "org.apache.tomcat:servlet-api:6.0.29"
compile libs.slf4j

compile(project(":spock-core")) {
exclude module: "ant"
exclude module: "ant" // Grails build uses different Ant version (1.7.1)
}
}
17 changes: 7 additions & 10 deletions spock-grails/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,14 @@ configurations {
dependencies {
logging libs.slf4j

compile \
project(':spock-grails-support'),
"org.grails:grails-crud:${grailsVersion}",
"org.grails:grails-gorm:${grailsVersion}",
"hsqldb:hsqldb:1.8.0.5"

runtime \
"net.sf.ehcache:ehcache-core:1.7.1",
"org.aspectj:aspectjrt:1.6.6"
}
compile project(':spock-grails-support')
compile "org.grails:grails-crud:${grailsVersion}"
compile "org.grails:grails-gorm:${grailsVersion}"
compile "hsqldb:hsqldb:1.8.0.5"

runtime "net.sf.ehcache:ehcache-core:1.7.1"
runtime "org.aspectj:aspectjrt:1.6.6"
}

// Used in BuildConfig to selectively list specify dependencies
System.setProperty("spock.building", "true")
Expand Down
2 changes: 1 addition & 1 deletion spock-grails/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<!-- Required to get hold of JTA -->
<repository>
<id>dev.java.net</id>
<url>http://download.java.net/maven/2/</url>
<url>http://download.java.net/maven/2</url>
</repository>
<repository>
<id>codehaus</id>
Expand Down

0 comments on commit eae1e36

Please sign in to comment.