55 lines
1.4 KiB
Groovy
55 lines
1.4 KiB
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
id 'groovy'
|
|
id 'com.gradle.plugin-publish' version '0.17.0'
|
|
}
|
|
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'java-gradle-plugin'
|
|
apply plugin: 'com.gradle.plugin-publish'
|
|
|
|
dependencies {
|
|
api gradleApi()
|
|
api "org.xbib:rpm-core:${project.property('rpm.version')}"
|
|
testImplementation gradleTestKit()
|
|
}
|
|
|
|
compileGroovy {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
compileTestGroovy {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
validatePlugins {
|
|
// disable warning as failures because gradle plugin does not recognize @Delegate tag
|
|
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'
|
|
plugins {
|
|
rpmPlugin {
|
|
id = 'org.xbib.gradle.plugin.rpm'
|
|
version = project.version
|
|
description = rootProject.ext.description
|
|
displayName = rootProject.ext.description
|
|
tags = ['gradle', 'plugin', 'rpm']
|
|
}
|
|
}
|
|
}
|
|
}
|