{"id":20301839,"url":"https://github.com/ochmanskide/quarkus.code-with-quarkus","last_synced_at":"2026-05-04T17:34:29.544Z","repository":{"id":162403800,"uuid":"546849451","full_name":"ochmanskide/quarkus.code-with-quarkus","owner":"ochmanskide","description":"Example Quarkus project","archived":false,"fork":false,"pushed_at":"2023-05-29T08:41:53.000Z","size":202,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T06:41:36.669Z","etag":null,"topics":["graalvm","gradle","java","mandrel","quarkus","quarkus-gradle"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ochmanskide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-10-06T18:47:57.000Z","updated_at":"2023-05-06T05:45:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"7c063dda-8632-4dd7-96ee-fc9a0501163e","html_url":"https://github.com/ochmanskide/quarkus.code-with-quarkus","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ochmanskide/quarkus.code-with-quarkus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ochmanskide%2Fquarkus.code-with-quarkus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ochmanskide%2Fquarkus.code-with-quarkus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ochmanskide%2Fquarkus.code-with-quarkus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ochmanskide%2Fquarkus.code-with-quarkus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ochmanskide","download_url":"https://codeload.github.com/ochmanskide/quarkus.code-with-quarkus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ochmanskide%2Fquarkus.code-with-quarkus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32617957,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["graalvm","gradle","java","mandrel","quarkus","quarkus-gradle"],"created_at":"2024-11-14T16:27:56.899Z","updated_at":"2026-05-04T17:34:29.502Z","avatar_url":"https://github.com/ochmanskide.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# code-with-quarkus\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## 1. Getting started\n### 1.1 Prerequisites\nIt is assumed that you have basic software tools such as `git`, `java`, `gradle`. Ideally you would have [SDKMAN](https://sdkman.io) installed and all the tools would download themselves, based on instructions provided inside of [.sdkmanrc](./.sdkmanrc) file.  \nIf you don't have [SDKMAN](https://sdkman.io), it is not the end of the world. You should be able to start the project with your tools as well.  \n\n### 1.2. Download project\nClone source code into destination of your choice:\n```shell script\ngit clone git@github.com:ochmanskide/quarkus.code-with-quarkus.git ~/Workspace/github/ochmanskide/quarkus/code-with-quarkus\n```\n\n## 2. Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\ngradle quarkusDev\n```\nif you have `quarkus` installed you may simply run:\n```shell script\nquarkus dev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.\n\n## 3. Packaging and running the application\n\nThe application can be packaged using:\n```shell script\ngradle build -x test\n```\nIt produces the `quarkus-run.jar` file in the `./build/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `./build/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar ./build/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n```shell script\ngradle build -x test -Dquarkus.package.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar ./build/code-with-quarkus-*-runner.jar`.\n\n## 4. Creating a native executable\n\nYou can create a native executable using: \n```shell script\ngradle build -x test -Dquarkus.package.type=native\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using: \n```shell script\ngradle build -x test -Dquarkus.package.type=native -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./build/libs/code-with-quarkus-1.0.0-SNAPSHOT-runner`\n\n## 5. Related Guides\n\n- RESTEasy Classic ([guide](https://quarkus.io/guides/resteasy)): REST endpoint framework implementing JAX-RS and more\n\n## 6. Provided Code\n\n### 6.1. RESTEasy JAX-RS\n\nEasily start your RESTful Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started#the-jax-rs-resources)\n\n### 12. License\n```\nCopyright 2023 Lukasz Ochmanski\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fochmanskide%2Fquarkus.code-with-quarkus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fochmanskide%2Fquarkus.code-with-quarkus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fochmanskide%2Fquarkus.code-with-quarkus/lists"}