-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
44 lines (37 loc) · 902 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
41
42
43
44
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9.1'
}
}
plugins {
id 'java'
id 'io.freefair.lombok' version '3.8.1'
}
apply plugin: 'com.novoda.bintray-release'
group 'com.labstack'
version '1.0.1'
sourceCompatibility = 1.8
test {
useJUnitPlatform()
}
repositories {
jcenter()
}
publish {
userOrg = 'labstack'
groupId = 'com.labstack'
artifactId = 'labstack-java'
publishVersion = '1.0.1'
desc = 'Official Java client library for the LabStack API'
website = 'https://github.com/labstack/labstack-java'
licences = ['MIT']
}
dependencies {
compile 'com.squareup.okhttp3:okhttp:4.0.1'
compile 'com.squareup.moshi:moshi:1.8.0'
compile 'com.squareup.moshi:moshi-adapters:1.8.0'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.5.1'
}