chore(release): set next SNAPSHOT version
5 files changed
tree: 6c2ee82df7eaa2509197ac24bbd2841beb5e3782
  1. .github/
  2. src/
  3. tobago-assembly/
  4. tobago-core/
  5. tobago-example/
  6. tobago-theme/
  7. tobago-tool/
  8. .gitattributes
  9. .gitignore
  10. build-site.sh
  11. CI.md
  12. CODE_OF_CONDUCT.md
  13. CONTRIBUTING.md
  14. doap.rdf
  15. Jenkinsfile
  16. package.json
  17. pom.xml
  18. README.md
  19. settings-example.xml
  20. tobago-pmd-config.xml
README.md

Apache Tobago

License Tobago CI CodeQL Build Status ASF

Building

You need Maven 3 (at least 3.0.4) and Java 8 or later to build Tobago.

In the project directory you can use:

mvn install  

to run the install target on all sub projects. This will put all necessary artifacts into your local repository.

Demo - Jetty

Switch to sub-directory and call Maven to run the demo:

cd tobago-example/tobago-example-demo
mvn clean jetty:run -Pjetty

Browse to the local URL http://localhost:8080/

Demo - Tomcat in Docker

Switch to sub-directory and call Maven to run the demo:

cd tobago-example/tobago-example-demo
mvn clean install -Ptomcat
docker run -it --rm -p 8080:8080 -v `pwd`/target/tobago-example-demo.war:/usr/local/tomcat/webapps/tobago-example-demo.war --name tobago-example-demo tomcat:9-jre8

Browse to the local URL http://localhost:8080/tobago-example-demo/

Demo - Quarkus

Switch to sub-directory and call Maven to run the demo:

cd tobago-example/tobago-example-demo
mvn clean install -Pquarkus
java -jar ./target/tobago-example-demo-runner.jar

Browse to the local URL http://localhost:8080/