forked from Itiviti/gradle-nunit-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (33 loc) · 1.04 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
plugins {
id 'nu.studer.plugindev' version '1.0.3'
id "com.jfrog.bintray" version "1.2"
}
apply plugin: 'groovy'
group = 'com.ullink.gradle'
version = '1.3-SNAPSHOT'
description 'gradle-nunit-plugin is a Gradle plugin that enables NUnit testing'
dependencies {
compile 'com.ullink.gradle:gradle-repositories-plugin:2.1'
}
bintray {
// to remove when upgraded plugindev to 1.0.4
user project.properties.bintrayUser
key project.properties.bintrayApiKey
pkg.repo = 'gradle-plugins'
pkg.version.gpg.sign = true
pkg.userOrg = 'ullink'
}
plugindev {
pluginId 'com.ullink.nunit'
pluginName 'com.ullink.gradle:gradle-nunit-plugin'
pluginImplementationClass 'com.ullink.gradle.nunit.NUnitPlugin'
pluginDescription project.description
pluginLicenses 'Apache-2.0'
pluginTags 'gradle', 'plugin', 'nunit', 'c#', '.net', 'test'
authorId 'muryoh'
authorName 'Remy Masson'
authorEmail '[email protected]'
projectUrl "https://github.com/muryoh/${project.name}"
projectInceptionYear '2015'
done()
}