Skip to content

Commit f05bdf2

Browse files
committed
Move some files around
1 parent 59c143c commit f05bdf2

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ dependencies {
4747
testImplementation "org.mockito:mockito-core:2.23.4"
4848
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0"
4949

50-
testCompile "me.eugeniomarletti.kotlin.metadata:kotlin-metadata:1.4.0"
50+
compile "me.eugeniomarletti.kotlin.metadata:kotlin-metadata:1.4.0"
5151
testCompile 'com.squareup:kotlinpoet:1.0.0-RC1'
5252
testCompile 'com.squareup:javapoet:1.11.1'
5353

54-
testImplementation "com.squareup.okio:okio:2.1.0"
55-
testImplementation 'io.github.classgraph:classgraph:4.6.10'
54+
implementation "com.squareup.okio:okio:2.1.0"
55+
implementation 'io.github.classgraph:classgraph:4.6.10'
5656

5757
// the Kotlin compiler should be near the end of the list because its .jar file includes
5858
// an obsolete version of Guava
59-
testCompile "org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.11"
60-
testCompile "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.11"
59+
compile "org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.11"
60+
compile "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.11"
6161
}
6262

6363
compileKotlin {

src/test/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt renamed to src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import java.io.*
3232
import java.lang.RuntimeException
3333
import java.util.zip.ZipEntry
3434
import java.util.zip.ZipOutputStream
35-
import javax.lang.model.SourceVersion
3635
import javax.tools.Diagnostic
3736
import javax.tools.DiagnosticCollector
3837
import javax.tools.JavaFileObject

0 commit comments

Comments
 (0)