forked from medallia/Word2VecJava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (25 loc) · 915 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
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.7
targetCompatibility = 1.7
group = 'com.medallia.word2vec'
version = '0.10.3'
repositories {
mavenCentral()
}
dependencies {
compile 'org.apache.thrift:libthrift:0.9.1'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.1'
compile group: 'com.google.guava', name: 'guava', version: '18.0'
compile group: 'joda-time', name: 'joda-time', version: '2.3'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'commons-io', name: 'commons-io', version: '2.4'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
// disable the crazy super-strict doclint tool in Java 8
//noinspection SpellCheckingInspection
options.addStringOption('Xdoclint:none', '-quiet')
}
}