forked from SAGE-Lab/snl2fl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (43 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'org.junit.platform.gradle.plugin'
group = 'it.sagelab'
version = '0.1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'it.sagelab.specpro.Main'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
}
}
repositories {
mavenCentral()
}
dependencies {
compile('commons-cli:commons-cli:1.4')
compile('org.json:json:20171018')
compile('org.apache.directory.studio:org.apache.commons.io:2.4')
compile('org.antlr:antlr4:4.7')
compile('edu.stanford.nlp:stanford-corenlp:3.9.1')
testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0')
testCompile('org.junit.jupiter:junit-jupiter-params:5.2.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.2.0')
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
run {
if (project.hasProperty("appArgs")) {
args Eval.me(appArgs)
}
}
applicationDistribution.from("$projectDir") {
into ''
include 'README.md', 'LICENSE'
}