Skip to content

Commit

Permalink
Merge pull request #55 from link-intersystems/master
Browse files Browse the repository at this point in the history
Added support for unwrapped jar
  • Loading branch information
lukaszlenart committed May 8, 2017
2 parents 9838782 + 840d40a commit f776f3f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,11 @@ public void execute() throws MojoExecutionException {

c.setHeaderType(headerType);
c.setOutfile(outfile);
c.setJar(getJar());

if(!dontWrapJar){
c.setJar(getJar());
}

c.setDontWrapJar(dontWrapJar);
c.setErrTitle(errTitle);
c.setDownloadUrl(downloadUrl);
Expand Down

0 comments on commit f776f3f

Please sign in to comment.