-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 852 Bytes
/
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
buildscript {
dependencies {
classpath 'com.novoda:bintray-release:0.9.2'
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
apply plugin: 'com.novoda.bintray-release'
repositories {
jcenter()
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.12'
testImplementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testImplementation 'com.github.salomonbrys.kotson:kotson:2.5.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
group 'aya.patpat'
version '0.0.2' // master branch
publish {
userOrg = 'l-patpat'
groupId = "$group"
artifactId = 'global-result' // master branch
publishVersion = "$version"
desc = 'GlobalResult for java'
website = 'https://github.com/l-patpat/global-result-java'
}