You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
545 B
Groovy
13 lines
545 B
Groovy
3 years ago
|
plugins {
|
||
|
id "com.gradle.plugin-publish" version "0.15.0"
|
||
|
}
|
||
|
tasks.register("publishExisting", com.gradle.publish.PublishExistingTask) {
|
||
|
pluginId = "org.springframework.boot"
|
||
|
fileRepositoryRoot = "${repositoryRoot}"
|
||
|
pluginVersion = "${bootVersion}"
|
||
|
pluginCoordinates = "org.springframework.boot:spring-boot-gradle-plugin:${bootVersion}"
|
||
|
displayName = "Spring Boot Gradle Plugin"
|
||
|
pluginDescription = "Spring Boot Gradle Plugin"
|
||
|
website = "https://spring.io/projects/spring-boot"
|
||
|
vcsUrl = "https://github.com/spring-projects/spring-boot"
|
||
|
}
|