forked from spockframework/spock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated vcs information in maven POM
- Loading branch information
Showing
9 changed files
with
165 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
project(":spock-core") { | ||
dependencies { | ||
compile asm | ||
compile junit | ||
compile hamcrest_core // until https://github.com/KentBeck/junit/issues/issue/165 gets fixed | ||
compile cglib | ||
compile objenesis | ||
compile antDep | ||
compile hamcrest_core | ||
} | ||
applyReleaseProfile(project) | ||
|
||
dependencies { | ||
compile asm | ||
compile junit | ||
compile hamcrest_core // until https://github.com/KentBeck/junit/issues/issue/165 gets fixed | ||
compile cglib | ||
compile objenesis | ||
compile antDep | ||
compile hamcrest_core | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
project(":spock-guice") { | ||
dependencies { | ||
compile project(":spock-core") | ||
compile "com.google.inject:guice:2.0" | ||
// surfaces in the Guice API; groovyc complains if we don't add it | ||
compile "aopalliance:aopalliance:1.0" | ||
} | ||
applyReleaseProfile(project) | ||
|
||
dependencies { | ||
compile project(":spock-core") | ||
compile "com.google.inject:guice:2.0" | ||
// surfaces in the Guice API; groovyc complains if we don't add it | ||
compile "aopalliance:aopalliance:1.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
project(":spock-specs") { | ||
dependencies { | ||
testCompile project(":spock-core") | ||
testCompile junit | ||
testCompile easymock | ||
testCompile jmock_junit4 | ||
testCompile jmock | ||
testCompile mockito | ||
testRuntime asm | ||
testRuntime cglib | ||
testRuntime objenesis | ||
testRuntime h2database | ||
} | ||
dependencies { | ||
testCompile project(":spock-core") | ||
testCompile junit | ||
testCompile easymock | ||
testCompile jmock_junit4 | ||
testCompile jmock | ||
testCompile mockito | ||
testRuntime asm | ||
testRuntime cglib | ||
testRuntime objenesis | ||
testRuntime h2database | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
project(":spock-spring") { | ||
def springVersion = "3.0.5.RELEASE" | ||
applyReleaseProfile(project) | ||
|
||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.springframework:spring-test:$springVersion" | ||
compile "org.springframework:spring-beans:$springVersion" | ||
testCompile "org.springframework:spring-context:$springVersion" | ||
// not used directly at compile-time, but needed by groovyc | ||
testCompile "org.springframework:spring-core:$springVersion" | ||
testCompile "org.springframework:spring-jdbc:$springVersion" | ||
testCompile "org.springframework:spring-tx:$springVersion" | ||
testRuntime h2database | ||
testRuntime log4j | ||
} | ||
def springVersion = "3.0.5.RELEASE" | ||
|
||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.springframework:spring-test:$springVersion" | ||
compile "org.springframework:spring-beans:$springVersion" | ||
testCompile "org.springframework:spring-context:$springVersion" | ||
// not used directly at compile-time, but needed by groovyc | ||
testCompile "org.springframework:spring-core:$springVersion" | ||
testCompile "org.springframework:spring-jdbc:$springVersion" | ||
testCompile "org.springframework:spring-tx:$springVersion" | ||
testRuntime h2database | ||
testRuntime log4j | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
project(":spock-tapestry") { | ||
repositories { | ||
// need to explicitely add repository defined in tapestry-ioc POM | ||
// (workaround for http://jira.codehaus.org/browse/GRADLE-611) | ||
mavenRepo(urls: "http://repository.jboss.com/maven2") | ||
} | ||
|
||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.apache.tapestry:tapestry-ioc:5.2.4" | ||
compile "org.apache.tapestry:tapestry5-annotations:5.2.4" | ||
compile "org.slf4j:slf4j-api:1.6.1" | ||
compile junit | ||
} | ||
applyReleaseProfile(project) | ||
|
||
repositories { | ||
// need to explicitely add repository defined in tapestry-ioc POM | ||
// (workaround for http://jira.codehaus.org/browse/GRADLE-611) | ||
mavenRepo(urls: "http://repository.jboss.com/maven2") | ||
} | ||
|
||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.apache.tapestry:tapestry-ioc:5.2.4" | ||
compile "org.apache.tapestry:tapestry5-annotations:5.2.4" | ||
compile "org.slf4j:slf4j-api:1.6.1" | ||
compile junit | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
project(":spock-unitils") { | ||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.unitils:unitils-core:3.1" | ||
applyReleaseProfile(project) | ||
|
||
// the following are transitive deps of unitils-core with scope compile | ||
// nevertheless, if we don't specify them explicitely, groovyc crashes with | ||
// NoClassDefFoundError at org.codehaus.groovy.vmplugin.v5.Java5.configureClassNode(Java5.java:285) | ||
compile "commons-collections:commons-collections:3.2" | ||
compile "ognl:ognl:2.6.9" | ||
dependencies { | ||
compile project(":spock-core") | ||
compile "org.unitils:unitils-core:3.1" | ||
|
||
testCompile("org.unitils:unitils-dbunit:3.1") { | ||
exclude module: "jta" | ||
} | ||
testCompile("org.unitils:unitils-database:3.1") { | ||
exclude module: "jta" | ||
} | ||
// the following are transitive deps of unitils-core with scope compile | ||
// nevertheless, if we don't specify them explicitely, groovyc crashes with | ||
// NoClassDefFoundError at org.codehaus.groovy.vmplugin.v5.Java5.configureClassNode(Java5.java:285) | ||
compile "commons-collections:commons-collections:3.2" | ||
compile "ognl:ognl:2.6.9" | ||
|
||
// for some reason, groovyc needs junit dependency for compiling tests | ||
// otherwise we'll get: | ||
// java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError | ||
testCompile junit | ||
|
||
testRuntime h2database | ||
testRuntime log4j | ||
testCompile("org.unitils:unitils-dbunit:3.1") { | ||
exclude module: "jta" | ||
} | ||
testCompile("org.unitils:unitils-database:3.1") { | ||
exclude module: "jta" | ||
} | ||
|
||
// for some reason, groovyc needs junit dependency for compiling tests | ||
// otherwise we'll get: | ||
// java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError | ||
testCompile junit | ||
|
||
testRuntime h2database | ||
testRuntime log4j | ||
} | ||
|