build(deps): bump quarkus.version from 1.13.7.Final to 3.10.0

Bumps `quarkus.version` from 1.13.7.Final to 3.10.0.

Updates `io.quarkus:quarkus-bom` from 1.13.7.Final to 3.10.0
- [Release notes](https://github.com/quarkusio/quarkus/releases)
- [Commits](https://github.com/quarkusio/quarkus/compare/1.13.7.Final...3.10.0)

Updates `io.quarkus:quarkus-maven-plugin` from 1.13.7.Final to 3.10.0

---
updated-dependencies:
- dependency-name: io.quarkus:quarkus-bom
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.quarkus:quarkus-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
1 file changed
tree: 911ceb204a5c073c4c4854f48a507f2efe453413
  1. .github/
  2. .mvn/
  3. src/
  4. tobago-assembly/
  5. tobago-core/
  6. tobago-example/
  7. tobago-theme/
  8. tobago-tool/
  9. .editorconfig
  10. .gitattributes
  11. .gitignore
  12. build-site.sh
  13. CI.md
  14. CODE_OF_CONDUCT.md
  15. CONTRIBUTING.md
  16. doap.rdf
  17. Jenkinsfile
  18. package.json
  19. pom.xml
  20. README.md
  21. RELEASE_CHECKLIST.md
  22. settings-example.xml
  23. tobago-pmd-config.xml
README.md

License Tobago CI CodeQL Build Status ASF

Apache Tobago

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 clean install

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

Demo - Jetty

Switch to subdirectory 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 - TomEE

Switch to subdirectory and call Maven to run the demo:

cd tobago-example/tobago-example-demo
mvn clean package -Ptomee tomee:run

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

Demo - Open Liberty

Switch to subdirectory and call Maven to run the demo:

cd tobago-example/tobago-example-demo
mvn clean -Pliberty liberty:run

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

Demo - Tomcat in Docker

Switch to subdirectory 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 subdirectory 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/

Demo - Spring Boot

Switch to special subdirectory and call Maven to run the demo:

cd tobago-example/tobago-example-spring-boot
mvn clean spring-boot:run

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