forked from watson-developer-cloud/java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (27 loc) · 943 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
sourceCompatibility = 1.6
targetCompatibility = 1.6
group = 'com.ibm.watson.developercloud'
archivesBaseName = 'watson-developer-cloud'
version = '2.1.0'
description = 'Client library to use the IBM Watson Services and AlchemyAPI'
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.squareup.okhttp', name: 'okhttp', version:'2.5.0'
compile group: 'com.google.code.gson', name: 'gson', version:'2.3.1'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.3.2'
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.10.19'
testCompile group: 'org.mock-server', name: 'mockserver-netty', version:'3.9.17'
testCompile group: 'junit', name: 'junit-dep', version:'4.11'
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}