{"id":17998142,"url":"https://github.com/andrewazores/quarkus-test","last_synced_at":"2025-03-26T04:31:40.476Z","repository":{"id":49807029,"uuid":"341984655","full_name":"andrewazores/quarkus-test","owner":"andrewazores","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-04T15:43:53.000Z","size":110,"stargazers_count":0,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-14T06:48:18.360Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andrewazores.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-24T17:45:05.000Z","updated_at":"2022-07-26T16:56:05.000Z","dependencies_parsed_at":"2023-02-16T20:31:15.061Z","dependency_job_id":"bcd3e5ec-3b33-41e4-bf6c-96763013d4ff","html_url":"https://github.com/andrewazores/quarkus-test","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewazores%2Fquarkus-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewazores%2Fquarkus-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewazores%2Fquarkus-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewazores%2Fquarkus-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrewazores","download_url":"https://codeload.github.com/andrewazores/quarkus-test/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245589265,"owners_count":20640254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-29T21:24:12.766Z","updated_at":"2025-03-26T04:31:40.201Z","avatar_url":"https://github.com/andrewazores.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Docker Repository on Quay](https://quay.io/repository/andrewazores/quarkus-test/status \"Docker Repository on Quay\")](https://quay.io/repository/andrewazores/quarkus-test)\n\n# code-with-quarkus project\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./mvnw compile quarkus:dev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:10010/q/dev/.\n\n## Packaging and running the application\n\nThe [`cryostat-agent`](https://github.com/cryostatio/cryostat-agent) JAR dependency will be downloaded from an\nauthenticated repository by default. Add or merge the following configuration into your `$HOME/.m2/settings.xml`,\ncreating the file if it does not exist:\n\n```xml\n\u003csettings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd\"\u003e\n  \u003cservers\u003e\n    \u003cserver\u003e\n      \u003cid\u003egithub\u003c/id\u003e\n      \u003cusername\u003e$MY_GITHUB_USERNAME\u003c/username\u003e\n      \u003cpassword\u003e$MY_GITHUB_ACCESSTOKEN\u003c/password\u003e\n    \u003c/server\u003e\n  \u003c/servers\u003e\n\u003c/settings\u003e\n```\n\nThe token must have the `read:packages` permission. It is recommended that this is the *only* permission the token has.\n\nAlternatively, clone the `-agent` repository, check out the required tagged version, and `mvn install` it to install\nthe `-agent` JAR artifact into the local `.m2` repository, bypassing the need to access the GitHub Package registry.\n\nThe application can be packaged using:\n```shell script\n./mvnw package\n```\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nIf you want to build an _über-jar_, execute the following command:\n```shell script\n./mvnw package -Dquarkus.package.type=uber-jar\n```\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nBuild a JVM mode OCI image:\n\n`$BUILDER build -t quay.io/andrewazores/quarkus-test:$VERSION -f src/main/docker/Dockerfile.jvm .`\n\nwhere `BUILDER` is ex. `podman`, `docker`.\n\n## Creating a native executable\n\nYou can create a native executable using: \n```shell script\n./mvnw package -Pnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using: \n```shell script\n./mvnw package -Pnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/code-with-quarkus-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.html.\n\n## Provided examples\n\n### RESTEasy JAX-RS example\n\nREST is easy peasy with this Hello World RESTEasy resource.\n\n[Related guide section...](https://quarkus.io/guides/getting-started#the-jax-rs-resources)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewazores%2Fquarkus-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewazores%2Fquarkus-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewazores%2Fquarkus-test/lists"}