{"id":19398327,"url":"https://github.com/quarkiverse/quarkus-groovy","last_synced_at":"2026-01-12T08:45:51.941Z","repository":{"id":156288313,"uuid":"632470944","full_name":"quarkiverse/quarkus-groovy","owner":"quarkiverse","description":"Groovy support in Quarkus","archived":false,"fork":false,"pushed_at":"2025-12-18T11:08:12.000Z","size":1553,"stargazers_count":14,"open_issues_count":11,"forks_count":5,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-12-21T15:37:27.163Z","etag":null,"topics":["groovy","quarkus-extension"],"latest_commit_sha":null,"homepage":"https://groovy.apache.org/","language":"Groovy","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/quarkiverse.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-25T13:27:32.000Z","updated_at":"2025-12-19T01:37:42.000Z","dependencies_parsed_at":"2023-12-30T17:25:14.337Z","dependency_job_id":"7a4d1405-bcc4-4d50-86b8-fcd11f5b02a5","html_url":"https://github.com/quarkiverse/quarkus-groovy","commit_stats":null,"previous_names":[],"tags_count":80,"template":false,"template_full_name":null,"purl":"pkg:github/quarkiverse/quarkus-groovy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkiverse%2Fquarkus-groovy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkiverse%2Fquarkus-groovy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkiverse%2Fquarkus-groovy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkiverse%2Fquarkus-groovy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quarkiverse","download_url":"https://codeload.github.com/quarkiverse/quarkus-groovy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarkiverse%2Fquarkus-groovy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["groovy","quarkus-extension"],"created_at":"2024-11-10T11:05:36.859Z","updated_at":"2026-01-12T08:45:51.922Z","avatar_url":"https://github.com/quarkiverse.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quarkus Groovy\n\u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\n[![Build](https://github.com/quarkiverse/quarkus-groovy/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/quarkiverse/quarkus-groovy/actions?query=workflow%3ABuild)\n[![License](https://img.shields.io/github/license/quarkiverse/quarkus-groovy)](http://www.apache.org/licenses/LICENSE-2.0)\n[![Central](https://img.shields.io/maven-central/v/io.quarkiverse.groovy/quarkus-groovy?color=green)](https://search.maven.org/search?q=g:io.quarkiverse.groovy%20AND%20a:quarkus-groovy)\n\nQuarkus Groovy is a Quarkus extension that allows you to write Quarkus 3.30 applications in Groovy 4.0.\n\nWith Maven, add the following dependency to your `pom.xml` to get started:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.quarkiverse.groovy\u003c/groupId\u003e\n    \u003cartifactId\u003equarkus-groovy\u003c/artifactId\u003e\n    \u003cversion\u003e${quarkusGroovyVersion}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nOr with Gradle, add the following dependency to your `build.gradle`:\n\n```groovy\nimplementation \"io.quarkiverse.groovy:quarkus-groovy:${quarkusGroovyVersion}\"\n```\n\nFor more information and quickstart, you can check the complete [documentation](https://quarkiverse.github.io/quarkiverse-docs/quarkus-groovy/dev/index.html).\n\n## Build\n\nTo build the extension, the requirements are the following:\n\n* Java 17+\n* Maven 3.8+\n* Docker 23+\n* GraalVM 23.1+ (optional)\n\nTo quickly build the extension with all the tests and validators disabled:\n\n```sh\n$ mvn -Dquickly\n```\n\nTo build the extension with all the tests for the JVM mode and the validators enabled:\n\n```sh\n$ mvn clean install\n```\n\nTo build the extension with everything enabled when GraalVM is installed on the local machine:\n\n```sh\n$ mvn clean install -Dnative\n```\n\nTo build the extension with everything enabled when GraalVM is not installed on the local machine:\n\n```sh\n$ mvn clean install -Dnative -Dquarkus.native.container-build\n```\n\n## Contributors ✨\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind are welcome!\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://stackoverflow.com/users/1997376/nicolas-filotto\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1618116?v=4?s=100\" width=\"100px;\" alt=\"Nicolas Filotto\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNicolas Filotto\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=essobedo\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#maintenance-essobedo\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/fernando88to\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/280641?v=4?s=100\" width=\"100px;\" alt=\"Fernando Henrique\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFernando Henrique\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=fernando88to\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://thejavaguy.org/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/11942401?v=4?s=100\" width=\"100px;\" alt=\"Ivan Milosavljević\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eIvan Milosavljević\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=TheJavaGuy\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://gastaldi.wordpress.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/54133?v=4?s=100\" width=\"100px;\" alt=\"George Gastaldi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGeorge Gastaldi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=gastaldi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://hollycummins.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/11509290?v=4?s=100\" width=\"100px;\" alt=\"Holly Cummins\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHolly Cummins\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=holly-cummins\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=holly-cummins\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://melloware.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/4399574?v=4?s=100\" width=\"100px;\" alt=\"Melloware\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMelloware\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/quarkiverse/quarkus-groovy/commits?author=melloware\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarkiverse%2Fquarkus-groovy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquarkiverse%2Fquarkus-groovy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarkiverse%2Fquarkus-groovy/lists"}