https://github.com/byjg/skiprepo
Skip Repository
https://github.com/byjg/skiprepo
Last synced: 8 months ago
JSON representation
Skip Repository
- Host: GitHub
- URL: https://github.com/byjg/skiprepo
- Owner: byjg
- Created: 2018-03-17T18:42:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-21T17:59:18.000Z (about 7 years ago)
- Last Synced: 2024-10-19T07:53:18.604Z (12 months ago)
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hello World! (WAR-style)
This is the simplest possible Java webapp for testing servlet container deployments.
It should work on any container and requires no other dependencies or configuration.The hello world project was forked from https://github.com/efsavage/hello-world-war.git because
there is no necessary a full solution for a Proof of Concept## Specific changes
[](https://travis-ci.org/byjg/skiprepo)
This project adds a Dockerfile and the .travis.yml necessary for build the project using the CI platform
### Build
```bash
docker run -it --rm --name my-maven-project \
-v "$(pwd)":/usr/src/mymaven \
-v "$(pwd)/.m2":/root/.m2 \
-w /usr/src/mymaven \
maven:3.3-jdk-8 mvn install
```