gradle-plugins/gradle-plugin-docker/build.gradle

34 lines
941 B
Groovy
Raw Normal View History

2021-11-09 14:08:25 +01:00
plugins {
id 'java-gradle-plugin'
alias(libs.plugins.publish)
2021-11-09 14:08:25 +01:00
}
2021-11-16 15:11:29 +01:00
apply plugin: 'java-gradle-plugin'
apply plugin: 'com.gradle.plugin-publish'
2021-11-09 14:08:25 +01:00
apply from: rootProject.file('gradle/compile/groovy.gradle')
2021-11-09 14:08:25 +01:00
dependencies {
api gradleApi()
testImplementation gradleTestKit()
}
if (project.hasProperty('gradle.publish.key')) {
2022-06-01 10:13:13 +02:00
gradlePlugin {
plugins {
dockerPlugin {
id = 'org.xbib.gradle.plugin.docker'
implementationClass = 'org.xbib.gradle.plugin.docker.DockerPlugin'
version = project.version
description = 'Docker plugin for build and push by Dockerfile'
displayName = 'Docker Plugin for build and push by Dockerfile'
}
2021-11-09 14:08:25 +01:00
}
}
2023-05-16 14:01:42 +02:00
/*pluginBundle {
2022-06-01 10:13:13 +02:00
website = 'https://github.com/jprante/gradle-plugins'
vcsUrl = 'https://github.com/jprante/gradle-plugins'
tags = ['docker']
2023-05-16 14:01:42 +02:00
}*/
2021-11-09 14:08:25 +01:00
}