-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
26 lines (20 loc) · 883 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'us.narin.summarizer'
version = '1.0-SNAPSHOT'
description = """summarizer-java"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'kr.bydelta', name: 'koalanlp-hannanum_2.12', version:'1.5.4', classifier:'assembly'
compile group: 'kr.bydelta', name: 'koalanlp-core_2.12', version:'1.5.4'
compile group: 'kr.bydelta', name: 'koalanlp-kryo_2.12', version:'1.5.4'
compile group: 'net.sf.jung', name: 'jung-api', version:'2.1.1'
compile group: 'net.sf.jung', name: 'jung-graph-impl', version:'2.1.1'
compile group: 'org.jgrapht', name: 'jgrapht-core', version:'1.0.1'
compile group: 'jgraph', name: 'jgraph', version:'5.13.0.0'
testCompile group: 'junit', name: 'junit', version:'3.8.1'
}