-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (30 loc) · 946 Bytes
/
build.gradle
File metadata and controls
38 lines (30 loc) · 946 Bytes
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
defaultTasks 'assemble', 'javadocs'
apply plugin: 'maven'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
group = "uk.ac.shef.dcs.oak.jate.eyt"
archivesBaseName = 'jatetoolkit'
version = "2.0Alpha_eyt"
status = 'integration'
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.opennlp', name: 'opennlp-tools', version: '1.5.3'
compile group: 'org.apache.opennlp', name: 'opennlp-maxent', version: '3.0.3'
compile group: 'net.sf.jwordnet', name: 'jwnl', version: '1.3.3'
compile group: 'org.hsqldb', name: 'hsqldb', version: '2.2.4'
compile group: 'org.hsqldb', name: 'sqltool', version: '2.2.4'
compile files(
"libs/dragon/dragontool.jar",
"libs/wit-commons/wit-commons.jar"
)
}
task javadocs(type: Javadoc) {
source = sourceSets.main.allJava
}