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 501aca9f33 Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
.vscode Workspace top level load routine ready. Fixed json bind strategy. 5 years ago
traqtor-env Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor-json Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor-mime-types MIME-types for Traqtor files 5 years ago
traqtor-model Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor-quackery Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor-schema Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor-tests Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
.gitignore .gitignore fix to ignore test work directory 5 years ago
README.md [Closes #1, #2] Intial commit 5 years ago
pom.xml Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 5 years ago
traqtor.code-workspace Splitting is a must in case of different source code layers - helps to keep track. Fixed base data types layous. Generics are evil in this case. 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