Skip to content

Commit

Permalink
Fix default value for outfile
Browse files Browse the repository at this point in the history
The outfile field had a typo in it's default value: 'bluid' instead of 'build'.
This made the launch4j goal fail unless there was an outfile specified in the configuration.
  • Loading branch information
frewert committed Jan 14, 2015
1 parent 67c63a0 commit 27d562e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public class Launch4jMojo extends AbstractMojo {
* The name of the executable you want launch4j to produce.
* The path, if relative, is relative to the pom.xml.
*/
@Parameter(defaultValue = "${project.bluid.directory}/${project.artifactId}.exe")
@Parameter(defaultValue = "${project.build.directory}/${project.artifactId}.exe")
private File outfile;

/**
Expand Down

0 comments on commit 27d562e

Please sign in to comment.