-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreference-marytts.gradle
77 lines (69 loc) · 2.15 KB
/
reference-marytts.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
project(':reference-marytts') { proj ->
subprojects {
repositories {
ivy {
url "$proj.projectDir/lib/repo"
layout 'maven'
}
}
version '5.1.1'
sourceSets {
test {
java {
exclude '**/*IT.java'
}
}
}
}
}
project(':reference-marytts:marytts-common') {
dependencies {
compile 'commons-io:commons-io:2.0.1'
compile 'log4j:log4j:1.2.16'
testCompile 'junit:junit:4.11'
testCompile 'org.testng:testng:6.8.13'
}
processResources {
filesMatching '**/specification-version.txt', {
expand project.properties
}
}
}
project(':reference-marytts:marytts-languages') {
subprojects {
dependencies {
compile project(':reference-marytts:marytts-common')
compile project(':reference-marytts:marytts-runtime')
compile project(':reference-marytts:marytts-signalproc')
testCompile 'junit:junit:4.11'
}
}
}
project(':reference-marytts:marytts-runtime') {
dependencies {
compile project(':reference-marytts:marytts-common')
compile project(':reference-marytts:marytts-signalproc')
compile 'commons-collections:commons-collections:3.2.1'
compile 'commons-lang:commons-lang:2.6'
compile 'de.dfki.lt.jtok:jtok-core:1.9.1'
compile 'de.dfki.mary:emotionml-checker-java:1.1'
compile 'de.dfki.mary:freetts:1.0'
compile 'de.dfki.mary:freetts-de:1.0'
compile 'de.dfki.mary:freetts-en_us:1.0'
compile 'net.sf.trove4j:trove4j:2.0.2'
compile 'org.apache.httpcomponents:httpcore-nio:4.1'
compile 'org.apache.opennlp:opennlp-tools:1.5.3'
testCompile 'junit:junit:4.11'
testCompile 'org.easytesting:fest-assert:1.4'
}
test {
useTestNG()
}
}
project(':reference-marytts:marytts-signalproc') {
dependencies {
compile project(':reference-marytts:marytts-common')
compile 'org.swinglabs:swing-layout:1.0.3'
testCompile 'junit:junit:4.11'
}
}