forked from tschuchortdev/kotlin-compile-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
70 lines (56 loc) · 1.95 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
}
apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'
apply plugin: 'idea'
apply plugin: 'maven'
group 'com.tschuchort'
version '1.2.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://kotlin.bintray.com/kotlinx' }
jcenter()
}
idea {
module {
sourceDirs += files('build/generated/source/kapt/main', 'build/generated/source/kaptKotlin/main')
generatedSourceDirs += files('build/generated/source/kapt/main', 'build/generated/source/kaptKotlin/main')
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation "org.assertj:assertj-core:3.11.1"
testImplementation "org.mockito:mockito-core:2.23.4"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0"
testImplementation 'com.squareup:kotlinpoet:1.0.0-RC1'
testImplementation 'com.squareup:javapoet:1.11.1'
implementation "com.squareup.okio:okio:2.1.0"
implementation 'io.github.classgraph:classgraph:4.6.10'
// the Kotlin compiler should be near the end of the list because its .jar file includes
// an obsolete version of Guava
implementation "org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.50"
implementation "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.50"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += ["-Xskip-runtime-version-check"]
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += ["-Xskip-runtime-version-check"]
}