Skip to content

Commit

Permalink
Actually use MiniMaven's buildJar() method in Fiji Build
Browse files Browse the repository at this point in the history
We're interested in .jar files, after all...

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Oct 14, 2011
1 parent 0d573eb commit f7b0907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-plugins/fake/fiji/build/SubFake.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ void action() throws FakeException {
else {
POM pom = getPOM();
if (pom != null) try {
pom.build();
copyJar(pom.getTarget(), target, parser.cwd, configPath);
pom.buildJar();
copyJar(pom.getTarget().getPath(), target, parser.cwd, configPath);
return;
} catch (Exception e) {
e.printStackTrace(parser.fake.err);
Expand Down

0 comments on commit f7b0907

Please sign in to comment.