gradle rpm plugin 2.4.0
This commit is contained in:
parent
4a95370ede
commit
608551af0f
6 changed files with 14 additions and 18 deletions
|
@ -1,4 +1,6 @@
|
|||
|
||||
group = 'org.xbib.gradle.plugin'
|
||||
|
||||
wrapper {
|
||||
gradleVersion = "${project.property('gradle.wrapper.version')}"
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
|
|
|
@ -58,7 +58,7 @@ if (project.hasProperty('gradle.publish.key')) {
|
|||
version = project.version
|
||||
description = rootProject.ext.description
|
||||
displayName = 'Gradle Docker Plugin'
|
||||
tags = ['gradle', 'docker']
|
||||
tags = ['docker']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ if (project.hasProperty('gradle.publish.key')) {
|
|||
version = project.version
|
||||
description = rootProject.ext.description
|
||||
displayName = rootProject.ext.description
|
||||
tags = ['gradle', 'plugin', 'git']
|
||||
tags = ['git']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'java-gradle-plugin'
|
||||
id 'groovy'
|
||||
id 'com.gradle.plugin-publish' version '0.17.0'
|
||||
id 'com.gradle.plugin-publish' version '1.0.0-rc-2'
|
||||
}
|
||||
|
||||
apply plugin: 'groovy'
|
||||
|
@ -29,26 +29,20 @@ validatePlugins {
|
|||
failOnWarning = false
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
rpmPlugin {
|
||||
id = 'org.xbib.gradle.plugin.rpm'
|
||||
implementationClass = 'org.xbib.gradle.plugin.RpmPlugin'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (project.hasProperty('gradle.publish.key')) {
|
||||
pluginBundle {
|
||||
website = 'https://github.com/jprante/rpm'
|
||||
vcsUrl = 'https://github.com/jprante/rpm'
|
||||
website = 'https://github.com/jprante/gradle-plugins/gradle-plugin-rpm'
|
||||
vcsUrl = 'https://github.com/jprante/gradle-plugins/'
|
||||
tags = ['rpm']
|
||||
}
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
rpmPlugin {
|
||||
id = 'org.xbib.gradle.plugin.rpm'
|
||||
version = project.version
|
||||
description = rootProject.ext.description
|
||||
displayName = rootProject.ext.description
|
||||
tags = ['gradle', 'plugin', 'rpm']
|
||||
implementationClass = 'org.xbib.gradle.plugin.RpmPlugin'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
version = 3.1.0
|
||||
version = 2.4.0
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
group = 'org.xbib.gradle.plugin'
|
||||
name = 'gradle-plugins'
|
||||
version = 0.0.2
|
||||
|
||||
groovy.version = 3.0.9
|
||||
org.gradle.warning.mode = all
|
||||
gradle.wrapper.version = 7.3.2
|
||||
groovy.version = 3.0.9
|
||||
groovy-git.version = 2.0.1
|
||||
rpm.version = 2.2.0
|
||||
spock.version = 2.0-groovy-3.0
|
||||
|
|
Loading…
Reference in a new issue