An open API service indexing awesome lists of open source software.

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.

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


```