From 27d562ebab744e8bb32217a364851784169481fd Mon Sep 17 00:00:00 2001 From: Carsten Frewert Date: Wed, 14 Jan 2015 17:41:23 +0100 Subject: [PATCH] Fix default value for outfile 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. --- .../java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java b/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java index 944a218c..810b03c3 100644 --- a/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java +++ b/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java @@ -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; /**