{"id":17284682,"url":"https://github.com/exu/rest-fake-name","last_synced_at":"2026-01-05T19:45:54.096Z","repository":{"id":141117871,"uuid":"499451585","full_name":"exu/rest-fake-name","owner":"exu","description":"example maven test","archived":false,"fork":false,"pushed_at":"2022-06-03T09:38:34.000Z","size":237,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T21:07:39.746Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/exu.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":"2022-06-03T09:22:54.000Z","updated_at":"2022-06-03T09:27:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"0477cf0c-730d-4703-b8b9-3973938db022","html_url":"https://github.com/exu/rest-fake-name","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exu%2Frest-fake-name","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exu%2Frest-fake-name/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exu%2Frest-fake-name/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exu%2Frest-fake-name/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exu","download_url":"https://codeload.github.com/exu/rest-fake-name/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245691076,"owners_count":20656698,"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-15T09:54:42.867Z","updated_at":"2026-01-05T19:45:54.069Z","avatar_url":"https://github.com/exu.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rest-fake-name 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:8080/q/dev/.\n\n### Running application in docker container\nGet release project version (without SNAPSHOT) from pom.xml or run scripts:\n```shell\nmvn versions:set -DremoveSnapshot -DgenerateBackupPoms=false\nVERSION=$(mvn -Dexec.executable='echo' -Dexec.args='${project.version}' --non-recursive exec:exec -q)\n```\n\nBuild service as docker image with \n```shell\n./mvnw clean package -Dquarkus.container-image.build=true -Dquarkus.container-image.image=rest-fake-name:$VERSION\n```\n\nYou can check docker image details with `docker images --filter=reference=\"*/*/rest-fake-name\"`\n\nNow you can run service in container\n```shell\ndocker run -d -i --rm -p 8080:8080 --name rest-fake-name registry-1.docker.io/library/rest-fake-name:$VERSION\n```\n#### Building application inside another docker container\n```shell\n# run container with docker image includes correct java and maven versions\ndocker run -it --rm -v ${PWD}:/app -v /var/run/docker.sock:/var/run/docker.sock maven:3.8.4-openjdk-17-slim bash\n# install docker inside this container\napt-get update -qq \u0026\u0026 apt-get install -y -qq docker.io\n# switch to project folder\ncd app\n# build docker image with app code and specific version (1.1 in this case - check correct one in pom.xml)\nmvn clean package -Dquarkus.container-image.build=true -Dquarkus.container-image.image=rest-fake-name:1.1\n# run a docker container using this image (make sure version is correct)\ndocker run -d -i --rm -p 8080:8080 --name rest-fake-name registry-1.docker.io/library/rest-fake-name:1.1\n```\n\n## Packaging and running the application\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\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\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, packaged as an _über-jar_, is now runnable using `java -jar target/*-runner.jar`.\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/rest-fake-name-1.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.\n\n## Provided Code\n\n### RESTEasy Reactive\n\nEasily start your Reactive RESTful Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started-reactive#reactive-jax-rs-resources)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexu%2Frest-fake-name","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexu%2Frest-fake-name","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexu%2Frest-fake-name/lists"}