forked from Itiviti/gradle-nuget-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 1.29 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
plugins {
id 'nu.studer.plugindev' version '1.0.3'
id "com.jfrog.bintray" version "1.2"
id 'net.researchgate.release' version '2.6.0'
}
group = 'com.ullink.gradle'
apply plugin: 'groovy'
description 'Gradle plugin for NuGet, to package, upload artifacts and restore packages.'
dependencies {
compile 'commons-io:commons-io:2.5'
testCompile 'junit:junit:4.12'
testCompile 'xmlunit:xmlunit:1.6'
testCompile ('org.spockframework:spock-core:1.1-groovy-2.4') {
exclude module: 'groovy-all'
}
}
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.nuget'
pluginName 'com.ullink.gradle:gradle-nuget-plugin'
pluginImplementationClass 'com.ullink.NuGetPlugin'
pluginDescription project.description
pluginLicenses 'Apache-2.0'
pluginTags 'gradle', 'plugin', 'nuget', 'c#', '.net'
authorId 'gluck'
authorName 'Francois Valdy'
authorEmail '[email protected]'
projectUrl "https://github.com/Ullink/${project.name}"
projectInceptionYear '2012'
done()
}
project.tasks.afterReleaseBuild.dependsOn project.tasks.bintrayUpload