You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Edward M. Kagan 0b67b20009 Fixed workspace to use redhat formatters for xml and yaml - good stuff anyway 5 years ago
.vscode Json gen for universe 5 years ago
traqtor-aio Minor import fix 5 years ago
traqtor-api No supperss warnings at last 5 years ago
traqtor-framework Maven family has arrived at the party 5 years ago
traqtor-generator Moving towar workspace mechanics impl 5 years ago
traqtor-json Json gen for universe 5 years ago
traqtor-quackery Updated repo layout to fit maven family :) 5 years ago
traqtor-schema Moving towar workspace mechanics impl 5 years ago
traqtor-schema-ref Moving towar workspace mechanics impl 5 years ago
.gitignore Fixed type hierarchy problem on command-executor-object api level 5 years ago
README.md [Closes #1, #2] Intial commit 5 years ago
pom.xml Json gen for universe 5 years ago
traqtor.code-workspace Fixed workspace to use redhat formatters for xml and yaml - good stuff anyway 5 years ago

README.md

my-artifactId project

This project uses Quarkus, the Supersonic Subatomic Java Framework.

If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./mvnw compile quarkus:dev

Packaging and running the application

The application can be packaged using:

./mvnw package

It produces the my-artifactId-my-version-runner.jar file in the /target directory. Be aware that its not an über-jar as the dependencies are copied into the target/lib directory.

If you want to build an über-jar, execute the following command:

./mvnw package -Dquarkus.package.type=uber-jar

The application is now runnable using java -jar target/my-artifactId-my-version-runner.jar.

Creating a native executable

You can create a native executable using:

./mvnw package -Pnative

Or, if you don't have GraalVM installed, you can run the native executable build in a container using:

./mvnw package -Pnative -Dquarkus.native.container-build=true

You can then execute your native executable with: ./target/my-artifactId-my-version-runner

If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.html.

RESTEasy JAX-RS

A Hello World RESTEasy resource

Guide: https://quarkus.io/guides/rest-json