archetype-resources.buildAndRun.sh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee8-essentials-archetype
Show all versions of javaee8-essentials-archetype
Java EE 8 project quickstart template. Clean, lean and minimalistic.
#!/bin/sh
mvn clean package && docker build -t ${groupId}/${artifactId} .
docker rm -f ${artifactId} || true && docker run -d -p 8080:8080 -p 4848:4848 --name ${artifactId} ${groupId}/${artifactId}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy