-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuild.gradle
45 lines (36 loc) · 1.04 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.5.0'
}
}
apply plugin: 'java'
apply plugin: 'bintray-release'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
def okhttpVersion = "3.10.0" // http://square.github.io/okhttp/
compile "com.squareup.okhttp3:okhttp:$okhttpVersion"
compile "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
compile 'com.google.code.gson:gson:2.8.4' // https://github.com/google/gson/releases
testCompile 'org.testng:testng:6.10' // http://testng.org/doc/download.html
testCompile "com.squareup.okhttp3:mockwebserver:$okhttpVersion"
}
compileTestJava {
options.encoding = 'UTF-8'
}
publish {
userOrg = 'yoomoney'
groupId = 'com.yoo.money.api'
artifactId = 'yoomoney-sdk-java'
version = '7.2.23'
website = 'https://github.com/yoomoney/yoomoney-sdk-java'
issueTracker = "${website}/issues"
repository = "${website}.git"
}
test.useTestNG()