-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
49 lines (43 loc) · 1.18 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
plugins {
id 'com.gradle.plugin-publish' version '1.2.1'
id 'groovy'
}
group 'de.dfki.mary'
version '0.5.0-SNAPSHOT'
description 'Forced alignment based on MaryTTS, Kaldi, and MFA'
gradlePlugin {
def pluginUrl = 'https://github.com/marytts/gradle-marytts-kaldi-mfa-plugin'
website = pluginUrl
vcsUrl = pluginUrl
plugins {
maryttsKaldiMfaPlugin {
id = 'de.dfki.mary.voicebuilding.marytts-kaldi-mfa'
implementationClass = 'de.dfki.mary.voicebuilding.MaryttsKaldiMfaPlugin'
displayName = 'Gradle MaryTTS Kaldi MFA plugin'
description = project.description
tags.set(['text-to-speech', 'kaldi', 'marytts', 'forced-alignment'])
}
}
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'io.github.m2ci-msp', name: 'jtgt', version: '0.7.0'
testImplementation group: 'org.testng', name: 'testng', version: '7.5.1'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
withJavadocJar()
withSourcesJar()
}
test {
useTestNG()
failFast = true
testLogging {
showStandardStreams = true
exceptionFormat = 'full'
}
}