@@ -19,9 +19,10 @@ plugins {
19
19
apply plugin : ' kotlin'
20
20
apply plugin : ' kotlin-kapt'
21
21
apply plugin : ' idea'
22
+ apply plugin : ' maven'
22
23
23
24
group ' com.tschuchort'
24
- version ' 1.0-SNAPSHOT '
25
+ version ' 1.0.0 '
25
26
26
27
sourceCompatibility = 1.8
27
28
@@ -40,24 +41,23 @@ idea {
40
41
}
41
42
42
43
dependencies {
43
- compile " org.jetbrains.kotlin:kotlin-stdlib-jdk8"
44
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
44
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8"
45
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
45
46
46
- testCompile " org.assertj:assertj-core:3.11.1"
47
+ testImplementation " org.assertj:assertj-core:3.11.1"
47
48
testImplementation " org.mockito:mockito-core:2.23.4"
48
49
testImplementation " com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0"
49
50
50
- compile " me.eugeniomarletti.kotlin.metadata:kotlin-metadata:1.4.0"
51
- testCompile ' com.squareup:kotlinpoet:1.0.0-RC1'
52
- testCompile ' com.squareup:javapoet:1.11.1'
51
+ testImplementation ' com.squareup:kotlinpoet:1.0.0-RC1'
52
+ testImplementation ' com.squareup:javapoet:1.11.1'
53
53
54
54
implementation " com.squareup.okio:okio:2.1.0"
55
55
implementation ' io.github.classgraph:classgraph:4.6.10'
56
56
57
57
// the Kotlin compiler should be near the end of the list because its .jar file includes
58
58
// an obsolete version of Guava
59
- compile " org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.21"
60
- compile " org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.21"
59
+ implementation " org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.21"
60
+ implementation " org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.21"
61
61
}
62
62
63
63
compileKotlin {
0 commit comments