-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
390 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ dependencies { | |
implementation 'org.vafer:jdeb:1.9' | ||
implementation 'net.jsign:jsign-core:3.1' | ||
implementation 'org.redline-rpm:redline:1.2.10' | ||
implementation 'io.github.fvarrui:launch4j:2.5.2' | ||
implementation 'edu.sc.seis.launch4j:launch4j:2.5.2' | ||
|
||
testImplementation 'junit:junit:4.12' | ||
|
||
|
@@ -64,7 +64,7 @@ dependencies { | |
} | ||
|
||
group = 'io.github.fvarrui' | ||
version = '1.7.2' | ||
version = '1.7.3' | ||
description = 'Hybrid Maven/Gradle plugin to package Java applications as native Windows, Mac OS X or GNU/Linux executables and create installers for them' | ||
|
||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
|
@@ -114,27 +114,37 @@ publishing { | |
name = project.name | ||
groupId = project.group | ||
artifactId = project.name | ||
version = project.version | ||
description = project.description | ||
packaging = 'maven-plugin' | ||
url = 'https://github.com/fvarrui/JavaPackager' | ||
scm { | ||
connection = 'scm:git:git://github.com/fvarrui/JavaPackager.git' | ||
developerConnection = 'scm:git:[email protected]:fvarrui/fvarrui.git' | ||
} | ||
} | ||
} | ||
|
||
afterEvaluate { | ||
publications { | ||
withType(MavenPublication) { | ||
// customize all publications here | ||
pom { | ||
version = project.version | ||
description = project.description | ||
url = 'https://github.com/fvarrui/JavaPackager' | ||
} | ||
licenses { | ||
license { | ||
name = 'GPL-v3.0' | ||
url = 'http://www.gnu.org/licenses/gpl-3.0.txt' | ||
distribution = 'repo' | ||
scm { | ||
connection = 'scm:git:git://github.com/fvarrui/JavaPackager.git' | ||
developerConnection = 'scm:git:[email protected]:fvarrui/fvarrui.git' | ||
url = 'https://github.com/fvarrui/JavaPackager' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'fvarrui' | ||
name = 'Francisco Vargas Ruiz' | ||
url = 'https://github.com/fvarrui' | ||
licenses { | ||
license { | ||
name = 'GPL-v3.0' | ||
url = 'http://www.gnu.org/licenses/gpl-3.0.txt' | ||
distribution = 'repo' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'fvarrui' | ||
name = 'Francisco Vargas Ruiz' | ||
url = 'https://github.com/fvarrui' | ||
} | ||
} | ||
} | ||
} | ||
|
@@ -157,7 +167,7 @@ task generatePluginDescriptor(type: JavaExec, dependsOn: compileJava) { | |
'--errors', | ||
'--batch-mode', | ||
'--file', generatePomFileForPluginMavenPublication.destination, | ||
'org.apache.maven.plugins:maven-plugin-plugin:3.6.0:descriptor', | ||
'org.apache.maven.plugins:maven-plugin-plugin:3.9.0:descriptor', | ||
'-Dproject.build.sourceEncoding=' + compileJava.options.encoding | ||
] | ||
doLast { | ||
|
@@ -186,7 +196,7 @@ nexusStaging { | |
} | ||
|
||
task updateUniversalJavaApplicationStub(type : Download) { | ||
def version = '20220410.162252' | ||
def version = '20230601.235708' | ||
group 'Update assets' | ||
description 'Downloads compiled and scripted versions of universalJavaApplicationStub to src/main/resources/mac overriding the existing ones.' | ||
src([ | ||
|
@@ -209,4 +219,3 @@ task updateWhyJavaLauncher(type : Download) { | |
dest file('src/main/resources/windows') | ||
overwrite true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,5 @@ public File createWindowsExe(WindowsPackager packager) throws Exception { | |
} | ||
return null; | ||
} | ||
|
||
|
||
|
||
} |
Oops, something went wrong.