Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
fvarrui committed Mar 10, 2022
2 parents 135a780 + e3ee8c5 commit 4281b3a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add the following `plugin` tag to your `pom.xml`:
<plugin>
<groupId>io.github.fvarrui</groupId>
<artifactId>javapackager</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -71,7 +71,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'io.github.fvarrui:javapackager:1.6.4'
classpath 'io.github.fvarrui:javapackager:1.6.5'
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies {
}

group = 'io.github.fvarrui'
version = '1.6.4'
version = '1.6.5'
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ protected File doApply(Packager packager) throws Exception {
if (legalFolder.exists()) {
FileUtils.removeFolder(legalFolder);
}

// removes jre/man folder as it causes problems when codesigning from Mac OS
File manFolder = new File(destinationFolder, "man");
if (manFolder.exists()) {
FileUtils.removeFolder(manFolder);
}

if (bundleJre) {
Logger.infoUnindent("JRE bundled in " + destinationFolder.getAbsolutePath() + "!");
Expand Down

0 comments on commit 4281b3a

Please sign in to comment.