forked from Itiviti/gradle-opencover-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.42 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
buildscript {
dependencies {
classpath "nu.studer:gradle-plugindev-plugin:1.0.4.DEV"
}
}
apply plugin: 'groovy'
apply plugin: 'nu.studer.plugindev'
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.ullink.gradle:gradle-repositories-plugin:2.1'
compile 'org.apache.commons:commons-io:1.3.2'
}
group = 'com.ullink.gradle'
version = '1.2-SNAPSHOT'
description 'gradle-opencover-plugin is a Gradle plugin for getting code coverage using OpenCover'
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 {
pluginName 'com.ullink.gradle:gradle-opencover-plugin'
pluginDescription project.description
pluginLicenses 'Apache-2.0'
pluginTags 'gradle', 'plugin', 'opencover', 'c#', '.net', 'test'
authorId 'muryoh'
authorName 'Remy Masson'
authorEmail '[email protected]'
projectUrl "https://github.com/muryoh/${project.name}"
projectInceptionYear '2015'
pluginImplementation {
pluginId 'com.ullink.opencover'
pluginImplementationClass 'com.ullink.gradle.opencover.OpenCoverPlugin'
}
pluginImplementation {
pluginId = 'com.ullink.opencover-nunit'
pluginImplementationClass 'com.ullink.gradle.opencover.OpenCoverNUnitPlugin'
}
done()
}