Skip to content

Commit 8b7758b

Browse files
committed
upgraded to launch4j:2.5.0
1 parent 1ea4751 commit 8b7758b

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

build.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ plugins {
1212
repositories {
1313
mavenLocal()
1414
mavenCentral()
15+
maven {
16+
url 'https://plugins.gradle.org/m2/'
17+
}
1518
}
1619

1720
gradlePlugin {
@@ -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)

0 commit comments

Comments
 (0)