File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
3- maven { url " https://plugins.gradle.org/m2/" }
4- maven { url ' https://repo.gradle.org/gradle/libs-releases' }
3+ gradlePluginPortal()
4+ }
5+ dependencies {
6+ classpath(" com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:1.3.0" )
57 }
6- }
7-
8- repositories {
9- mavenCentral()
10- maven { url " https://repo.grails.org/grails/core" }
11- maven { url ' https://repo.gradle.org/gradle/libs-releases' }
128}
139
1410ext. isSnapshot = version. endsWith(" -SNAPSHOT" )
@@ -17,6 +13,7 @@ ext."signing.keyId" = System.getenv("SIGNING_KEY") ?: project.hasProperty("signi
1713ext. " signing.password" = System . getenv(" SIGNING_PASSPHRASE" ) ?: project. hasProperty(" signing.password" ) ? project. getProperty(' signing.password' ) : null
1814ext. " signing.secretKeyRingFile" = project. hasProperty(" signing.secretKeyRingFile" ) ? project. getProperty(' signing.secretKeyRingFile' ) : null
1915
16+ apply plugin : ' com.gradle.plugin-publish'
2017apply plugin : ' java-gradle-plugin'
2118apply plugin : ' maven-publish'
2219
You can’t perform that action at this time.
0 commit comments