33 lines
956 B
Groovy
33 lines
956 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
id 'com.gradle.plugin-publish' version '1.2.1'
|
|
}
|
|
group "com.flystem.wukong.gradle"
|
|
version "0.0.1"
|
|
|
|
java {
|
|
sourceCompatibility = '17'
|
|
}
|
|
|
|
gradlePlugin {
|
|
website = 'https://github.com/flystem/wukong-gradle-plugin'
|
|
vcsUrl = 'https://github.com/flystem/wukong-gradle-plugin'
|
|
plugins {
|
|
WukongGradlePlugin {
|
|
id = 'com.flystem.wukong'
|
|
implementationClass = 'com.flystem.wukong.grade.WukongGradlePlugin'
|
|
displayName = 'Plugin for deploy to kubernetes'
|
|
description = 'A plugin that helps you deploy to kubernetes'
|
|
tags.addAll('kubernetes','k8s','kube',"wukong")
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
// maven { url 'https://maven.aliyun.com/repository/public/' }
|
|
}
|
|
dependencies {
|
|
implementation 'org.freemarker:freemarker:2.3.32'
|
|
implementation 'commons-io:commons-io:2.15.1'
|
|
} |