Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 353 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 353 Bytes

#What?

A skeleton project showing how to generate a web app as a simple jar.

#Why?

Because:

  • I don't want to install a webserver.
  • I don't want to worry about runtime dependencies.
  • I just want my app to be a single file.

#How?

To build:

mvn clean install

To run:

java -jar target/myproject-1.0-SNAPSHOT.jar

And that's pretty much it.