-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 900 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
id "com.jfrog.bintray" version "1.8.4"
}
group 'net.volcanomobile'
version '0.1'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
def Properties properties = new Properties()
properties.load(project.rootProject.file("local.properties").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'
}
}