File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ plugins {
1212repositories {
1313 mavenLocal()
1414 mavenCentral()
15+ maven {
16+ url ' https://plugins.gradle.org/m2/'
17+ }
1518}
1619
1720gradlePlugin {
@@ -47,8 +50,8 @@ dependencies {
4750 implementation ' commons-io:commons-io:2.6'
4851 implementation ' org.apache.commons:commons-collections4:4.1'
4952 implementation ' org.apache.velocity:velocity-engine-core:2.0'
50- implementation ' io.github.fvarrui:gradle- launch4j:2.4.7 '
51- implementation ' com.netflix.nebula:gradle-ospackage-plugin:8.4.1'
53+ implementation ' edu.sc.seis.launch4j: launch4j:2.5.0 '
54+ implementation ' com.netflix.nebula:gradle-ospackage-plugin:8.4.1'
5255 implementation ' net.jsign:jsign-core:3.1'
5356
5457 testImplementation ' junit:junit:4.12'
@@ -116,6 +119,12 @@ task generatePluginDescriptor(type: JavaExec, dependsOn: compileJava) {
116119 .mavenInstaller
117120 .pom
118121 .withXml {
122+ asNode(). appendNode(' repositories' ). appendNode(' repository' )
123+ .with {
124+ appendNode(' id' , ' gradle' )
125+ appendNode(' name' , ' Gradle Plugin Portal' )
126+ appendNode(' url' , ' https://plugins.gradle.org/m2/' )
127+ }
119128 asNode(). appendNode(' build' )
120129 .with {
121130 appendNode(' directory' , directory)
You can’t perform that action at this time.
0 commit comments