From f252031ff930eb809148b57d666c6160f13daee5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 3 May 2017 07:04:10 +0200 Subject: [PATCH] =?utf8?q?Use=20Kotlin=E2=80=99s=20dependency=20resolution?= =?utf8?q?=20for=20kotlin=20libraries?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- build.gradle | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 8f9a536..17ff719 100644 --- a/build.gradle +++ b/build.gradle @@ -2,15 +2,12 @@ group = 'net.pterodactylus' version = '0.9.6' buildscript { - ext { - kotlinVersion = '1.1.2' - } repositories { mavenCentral() } dependencies { classpath group: 'info.solidsoft.gradle.pitest', name: 'gradle-pitest-plugin', version: '1.1.10' - classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: kotlinVersion + classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: '1.1.2' } } @@ -44,7 +41,7 @@ dependencies { provided group: 'org.freenetproject', name: 'freenet-ext', version: '29' provided group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.54' - compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlinVersion + compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib' compile group: 'net.pterodactylus', name: 'utils', version: '0.12.4' compile group: 'com.google.inject', name: 'guice', version: '3.0' compile group: 'com.google.guava', name: 'guava', version: '14.0.1' @@ -52,7 +49,7 @@ dependencies { compile group: 'com.google.code.findbugs', name: 'jsr305', version: '2.0.1' compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2' - testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test', version: kotlinVersion + testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test' testCompile group: 'junit', name: 'junit', version: '4.11' testCompile group: 'org.mockito', name: 'mockito-core', version: '2.1.0' testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3' -- 2.7.4