-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
38 lines (33 loc) · 1.07 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
import org.gradle.internal.jvm.Jvm
apply plugin: 'kotlin'
apply plugin: 'com.novoda.bintray-release'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath "com.novoda:bintray-release:$BINTRAY_PLUGIN_VERSION"
}
}
repositories {
jcenter()
}
dependencies {
// Exported to consumers, that is to say found on their compile classpath.
api "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-compiler-embeddable:$KOTLIN_VERSION"
implementation "commons-io:commons-io:$COMMONS_IO_VERSION"
implementation "com.squareup.okio:okio:$OKIO_VERSION"
implementation "junit:junit:$JUNIT_VERSION"
testImplementation files(Jvm.current().getToolsJar())
testImplementation "com.google.auto.service:auto-service:$AUTO_VERSION"
}
publish {
userOrg = USER
groupId = GROUP_ID
artifactId = ARTIFACT_ID
publishVersion = VERSION
desc = DESCRIPTION
website = WEBSITE
}