Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2014-09-24 04:33:32 +0000
committerJan Bartel2014-09-24 04:33:32 +0000
commit607797b00519eac332e6c7971ab8e9a6c976cf6f (patch)
tree76425536ef54973f7d9d4bb195f0ff3a5bfa97fb /jetty-maven-plugin
parentdd8be028bb5840d9dee064b04c10cbb917efb1cb (diff)
downloadorg.eclipse.jetty.project-607797b00519eac332e6c7971ab8e9a6c976cf6f.tar.gz
org.eclipse.jetty.project-607797b00519eac332e6c7971ab8e9a6c976cf6f.tar.xz
org.eclipse.jetty.project-607797b00519eac332e6c7971ab8e9a6c976cf6f.zip
444676 Goal jetty:deploy-war produces errors with version 9.2.3
Diffstat (limited to 'jetty-maven-plugin')
-rw-r--r--jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyDeployWar.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyDeployWar.java b/jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyDeployWar.java
index e4f6181c9b..f4121d9177 100644
--- a/jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyDeployWar.java
+++ b/jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyDeployWar.java
@@ -72,9 +72,10 @@ public class JettyDeployWar extends JettyRunWarMojo
@Override
public void finishConfigurationBeforeStart() throws Exception
{
+ super.finishConfigurationBeforeStart();
//only stop the server at shutdown if we are blocking
server.setStopAtShutdown(!nonblocking);
- super.finishConfigurationBeforeStart();
+
}
}

Back to the top