Skip to content

Commit d3259f6

Browse files
committed
add Webapp Runner
1 parent 6893c34 commit d3259f6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

+21
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,27 @@
190190
<failOnMissingWebXml>false</failOnMissingWebXml>
191191
</configuration>
192192
</plugin>
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-dependency-plugin</artifactId>
196+
<version>2.3</version>
197+
<executions>
198+
<execution>
199+
<phase>package</phase>
200+
<goals><goal>copy</goal></goals>
201+
<configuration>
202+
<artifactItems>
203+
<artifactItem>
204+
<groupId>com.github.jsimone</groupId>
205+
<artifactId>webapp-runner</artifactId>
206+
<version>8.0.30.2</version>
207+
<destFileName>webapp-runner.jar</destFileName>
208+
</artifactItem>
209+
</artifactItems>
210+
</configuration>
211+
</execution>
212+
</executions>
213+
</plugin>
193214

194215
</plugins>
195216
</build>

0 commit comments

Comments
 (0)