-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
53 lines (46 loc) · 1.15 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
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'com.gradle.plugin-publish' version '0.9.10'
}
group 'org.m2ci.msp'
version '0.2-SNAPSHOT'
repositories {
jcenter()
maven {
url 'https://plugins.gradle.org/m2'
}
}
dependencies {
['mac', 'linux', 'windows', 'windows64'].each { platform ->
compile group: 'gradle.plugin.org.m2ci.msp', name: "praat-wrapper-$platform", version: '0.4'
}
testCompile group: 'org.testng', name: 'testng', version: '6.9.10'
}
gradlePlugin {
plugins {
praatPlugin {
id = 'org.m2ci.msp.praat'
implementationClass = 'org.m2ci.msp.praat.PraatPlugin'
}
}
}
test {
useTestNG()
testLogging {
exceptionFormat = 'full'
showStandardStreams = true
}
}
pluginBundle {
website = 'https://github.com/m2ci-msp/gradle-praat-plugin'
vcsUrl = 'https://github.com/m2ci-msp/gradle-praat-plugin'
description = 'Praat Superpowers for Gradle'
tags = ['phonetics', 'speech science']
plugins {
praatPlugin {
id = 'org.m2ci.msp.praat'
displayName = 'Gradle Praat plugin'
}
}
}