https://github.com/vast-engineering/executable-war
A maven utility that augments an existing WAR artifact to make it directly executable.
https://github.com/vast-engineering/executable-war
Last synced: 9 days ago
JSON representation
A maven utility that augments an existing WAR artifact to make it directly executable.
- Host: GitHub
- URL: https://github.com/vast-engineering/executable-war
- Owner: vast-engineering
- Created: 2013-10-09T17:10:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-09T17:33:08.000Z (over 12 years ago)
- Last Synced: 2026-01-14T04:45:49.216Z (5 months ago)
- Language: Java
- Size: 133 KB
- Stars: 0
- Watchers: 38
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
executable-war
==============
A maven utility that augments an existing WAR artifact to make it directly executable. The artifact produced by this build
is suitable to use as an overlay for your WAR file. To use this, make the following changes to your pom:
Add the following as a dependency to your project -
```xml
com.vast.common
executable-war
1.0.0
provided
```
And add the following to your build/plugins section -
```xml
org.apache.maven.plugins
maven-war-plugin
2.4
com.vast.util.EmbeddedJettyServer
WEB-INF/lib/executable-war-*.jar
WEB-INF/lib/*log4j*.jar,WEB-INF/lib/*slf4j*.jar
com.vast.common
executable-war
jar
```