forked from sing1ee/dict_build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (25 loc) · 812 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'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
group = 'build.dict'
version = '0.0.3'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName='dict.build.Main'
repositories {
mavenLocal()
maven { url 'http://nexus.ufish.io/content/groups/public/' }
mavenCentral()
}
dependencies {
compile('com.google.guava:guava:17.0')
compile('com.google.code.externalsortinginjava:externalsortinginjava:0.1.9')
compile('ch.qos.logback:logback-classic:1.0.13')
compile('ch.qos.logback:logback-core:1.0.13')
compile('org.slf4j:slf4j-api:1.6.4')
compile('commons-logging:commons-logging:1.1.1')
compile('commons-cli:commons-cli:1.2')
compile('com.googlecode.concurrent-trees:concurrent-trees:2.6.0')
}