-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
id "com.jfrog.bintray" version "1.8.4"
}
group 'net.volcanomobile'
version '0.2'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testImplementation "org.junit.jupiter:junit-jupiter:5.5.2"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
Properties properties = new Properties()
File file = rootProject.file('local.properties')
if (file.exists()) {
properties.load(file.newDataInputStream())
}
bintray {
user = properties.getProperty('bintrayUser')
key = properties.getProperty('bintrayApiKey')
configurations = ['archives']
pkg {
repo = 'public'
name = 'weservsdk'
userOrg = 'volcanomobile'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/VolcanoMobile/weserv-sdk.git'
githubRepo = 'VolcanoMobile/weserv-sdk'
}
}