Skip to content

Commit

Permalink
Merge branch 'releases/1.2.x' into releases/1.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pkleimann committed Feb 10, 2017
2 parents dc68468 + c833d17 commit 9c78c60
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions livingdoc-gradle.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,28 @@ group = "info.novatec.testit"
sourceCompatibility = 1.6

repositories {
jcenter()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://oss.sonatype.org/content/repositories/releases' }
}

configurations.all {
transitive = false
transitive = false
}

dependencies {
compile gradleApi()
compile localGroovy()
compile "info.novatec.testit:livingdoc-core:${LIVINGDOC_VERSION}@jar"
runtime "info.novatec.testit:livingdoc-client:${LIVINGDOC_VERSION}@jar"
runtime "xmlrpc:xmlrpc:2.0.1"
runtime "org.apache.commons:commons-lang3:3.4"
runtime "commons-codec:commons-codec:1.9"
runtime "commons-io:commons-io:2.4"
// needed test dependencies
testCompile gradleTestKit()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
compile gradleApi()
compile localGroovy()
compile "info.novatec.testit:livingdoc-core:${LIVINGDOC_VERSION}@jar"
runtime "info.novatec.testit:livingdoc-client:${LIVINGDOC_VERSION}@jar"
runtime "xmlrpc:xmlrpc:2.0.1"
runtime "org.apache.commons:commons-lang3:3.4"
runtime "commons-codec:commons-codec:1.9"
runtime "commons-io:commons-io:2.4"

// needed test dependencies
testCompile gradleTestKit()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
}

0 comments on commit 9c78c60

Please sign in to comment.