-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
45 lines (37 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
plugins {
id 'com.gradle.plugin-publish' version '0.15.0'
id 'net.researchgate.release' version '2.6.0'
id 'maven-publish'
}
apply plugin: 'java-gradle-plugin'
apply plugin: 'groovy'
apply plugin: 'com.gradle.plugin-publish'
group = 'com.ullink.gradle'
description 'gradle-nunit-plugin is a Gradle plugin that enables NUnit testing'
dependencies {
implementation 'de.undercouch:gradle-download-task:5.5.0'
testImplementation 'xmlunit:xmlunit:1.6'
testImplementation 'org.spockframework:spock-core:2.0-groovy-2.5'
}
pluginBundle {
website = 'https://github.com/Itiviti/gradle-nunit-plugin'
vcsUrl = 'https://github.com/Itiviti/gradle-nunit-plugin'
tags = ['nunit', 'c#', '.net']
mavenCoordinates {
groupId = 'com.ullink.gradle'
}
}
gradlePlugin {
plugins {
nunitPlugin {
id = 'com.ullink.nunit'
description = project.description
displayName = 'Gradle NUnit Plugin'
implementationClass = 'com.ullink.gradle.nunit.NUnitPlugin'
}
}
}
test {
useJUnitPlatform()
}
afterReleaseBuild.dependsOn project.tasks.publishPlugins