Skip to content

Commit

Permalink
Fix launch4j builder for java 9/10
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Jun 23, 2018
1 parent 2069c41 commit 6fd46d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,17 +220,14 @@
<preCp>anything</preCp>
</classPath>
<jre>
<minVersion>1.7.0</minVersion>
<opts>
<opt>-Djava.endorsed.dirs=./endorsed</opt>
</opts>
<minVersion>1.8.0</minVersion>
</jre>
<versionInfo>
<fileVersion>0.0.0.1</fileVersion>
<txtFileVersion>0.0.0.1</txtFileVersion>
<fileDescription>A tool that enables advanced features through adb
<fileDescription>Creates cryptographic random numbers in various encodings
</fileDescription>
<copyright>Patrick Favre-Bulle, 2016</copyright>
<copyright>Patrick Favre-Bulle, 2017</copyright>
<productVersion>${project.version}.0</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<productName>Dice Random Generator</productName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ private static char[] encodeGrayscale(final byte[] data) {
}
return out;
}

@Override
public String getDescription() {
return "Creates simple ascii style images containing some symbols. (experimental)";
}
}

0 comments on commit 6fd46d8

Please sign in to comment.