This repository has been archived by the owner on Mar 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
62 lines (50 loc) · 1.63 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
buildscript {
ext.kotlin_version = '1.3.20'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version"
}
}
allprojects {
apply plugin: 'idea'
group 'com.tschuchort.kotlinelements'
version '1.0-SNAPSHOT'
}
subprojects {
apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'
apply plugin: "kotlin-allopen"
apply plugin: "kotlin-noarg"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://kotlin.bintray.com/kotlinx' }
jcenter()
}
/*kapt {
generateStubs = true
}*/
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 {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.squareup.okio:okio:2.1.0"
testCompile "junit:junit: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"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += ["-Xskip-runtime-version-check"]
}
}