Skip to content

Provides a maven parent pom that uses maven overlay, jetty and avaje-jetty-runner to build runnable wars

License

Notifications You must be signed in to change notification settings

avaje-common/avaje-runnable-war

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

avaje-runnable-war

Provides a maven parent pom that uses maven overlay, jetty and avaje-jetty-runner to build runnable wars

This uses the "maven overlay approach" to put jetty, logging, servlet api and avaje-jetty-runner into the root path of the war and a manifest entry to point to the RunWar main method. The jars included in the overlays provide a set of system classes that boot and run the war.

  • runnable-war : Maven Central : runnable-war
  1. Maven parent pom

In a maven project specify runnable-war as the parent pom.

  <parent>
    <groupId>org.avaje.jetty</groupId>
    <artifactId>runnable-war</artifactId>
    <version>2.1.2</version>
  </parent>
  1. mvn clean package

This builds the war and will insert the jetty + logging + avaje-jetty-runner classes into the root of the war. It puts in a manifest entry to the avaje-jetty-runner RunWar.main() method.

Assumes logback is used for logging.

Version 2.1.1 introduces support for Websockets by adding the appropriate additional jetty dependencies.

  1. Run the war

Create a local logback.xml file and typically also a properties file.

#!/bin/sh
java -Dlogback.configurationFile=logback.xml -jar target/example-1.1.1-SNAPSHOT.war

References:

http://jowisoftware.de/blog/archives/26-Creating-runnable-wars-with-Maven-and-Jetty.html

https://github.com/uoa-group-applications/common-runnable-war

Debian Package:

The example https://github.com/avaje-common/example-runnable-war ... additionally uses jdeb to package the application up as a .deb with a logback.xml, properties file and init.d script.

About

Provides a maven parent pom that uses maven overlay, jetty and avaje-jetty-runner to build runnable wars

Resources

License

Stars

Watchers

Forks

Packages

No packages published