X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=build.gradle;h=b3578881445824a827ab45cc03549dafc45c1da4;hb=784e062ee9641a9fef1badd02fb6c416d6202f29;hp=3a2f0020fc50379af9a120106c318c982558154a;hpb=bfc5ea58b53dd2444f9d79cbdd4a6387ec839334;p=Sone.git diff --git a/build.gradle b/build.gradle index 3a2f002..b357888 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,5 @@ -group = 'net.pterodactylus' -version = '80' - buildscript { - ext.kotlinVersion = '1.3.41' + ext.kotlinVersion = '1.3.50' repositories { mavenCentral() } @@ -13,6 +10,9 @@ buildscript { } } +group = 'net.pterodactylus' +version = '80' + repositories { mavenCentral() maven { url "https://maven.pterodactylus.net/" } @@ -54,6 +54,7 @@ dependencies { compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2' compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2' compile group: 'io.dropwizard.metrics', name: 'metrics-core', version: '4.1.0' + compile group: 'javax.activation', name: 'javax.activation-api', version: '1.2.0' testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit' testCompile group: 'junit', name: 'junit', version: '4.11' @@ -89,7 +90,7 @@ javadoc { apply plugin: 'jacoco' jacoco { - toolVersion = '0.7.9' + toolVersion = '0.8.4' } jacocoTestReport.dependsOn test