From c833d173d6f93412ef69cab2a1dad33e3211797d Mon Sep 17 00:00:00 2001 From: Peter Kleimann <peter.kleimann@novatec-gmbh.de> Date: Fri, 10 Feb 2017 13:43:14 +0100 Subject: [PATCH] added releases repository oss-sonatype --- livingdoc-gradle.gradle | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/livingdoc-gradle.gradle b/livingdoc-gradle.gradle index ef88bb1..bd5618c 100644 --- a/livingdoc-gradle.gradle +++ b/livingdoc-gradle.gradle @@ -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' + } } \ No newline at end of file