-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
57 lines (48 loc) · 1.39 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
52
53
54
55
56
57
plugins {
id "com.github.ben-manes.versions" version "0.5"
id "com.bmuschko.nexus" version "2.1.1"
}
apply plugin: 'checkstyle'
apply plugin: 'java'
group = 'net.floatingsun'
version = '0.4.0-SNAPSHOT'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'com.squareup.retrofit:retrofit:1.7.1'
compile 'com.squareup.retrofit:converter-jackson:1.7.0'
compile 'com.google.guava:guava:18.0'
testCompile 'junit:junit:4.11'
testCompile 'org.assertj:assertj-core:1.7.0'
}
modifyPom {
project {
name 'jetcd'
description 'Java client for etcd'
url 'https://github.com/diwakergupta/jetcd'
inceptionYear '2013'
scm {
url 'https://github.com/diwakergupta/jetcd'
connection 'scm:https://github.com/diwakergupta/jetcd'
developerConnection 'scm:[email protected]:diwakergupta/jetcd.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'diwakergupta'
name 'Diwaker Gupta'
email '[email protected]'
}
}
}
}