{"id":15188783,"url":"https://github.com/gasches/micronaut-archetypes","last_synced_at":"2026-03-03T19:33:02.026Z","repository":{"id":57714229,"uuid":"177836785","full_name":"gasches/micronaut-archetypes","owner":"gasches","description":"Micronaut Maven Archetypes","archived":false,"fork":false,"pushed_at":"2019-04-11T06:44:02.000Z","size":223,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-03-03T01:25:05.446Z","etag":null,"topics":["archetype","gradle","groovy","java","kotlin","maven","micronaut","quickstart"],"latest_commit_sha":null,"homepage":"","language":"Java","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/gasches.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}},"created_at":"2019-03-26T17:24:11.000Z","updated_at":"2025-03-23T18:22:59.000Z","dependencies_parsed_at":"2022-09-26T21:31:15.919Z","dependency_job_id":null,"html_url":"https://github.com/gasches/micronaut-archetypes","commit_stats":null,"previous_names":["gasches/micronaut-service-archetype"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/gasches/micronaut-archetypes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasches%2Fmicronaut-archetypes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasches%2Fmicronaut-archetypes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasches%2Fmicronaut-archetypes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasches%2Fmicronaut-archetypes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gasches","download_url":"https://codeload.github.com/gasches/micronaut-archetypes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gasches%2Fmicronaut-archetypes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30056069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"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":["archetype","gradle","groovy","java","kotlin","maven","micronaut","quickstart"],"created_at":"2024-09-27T19:42:22.609Z","updated_at":"2026-03-03T19:33:01.986Z","avatar_url":"https://github.com/gasches.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Micronaut Maven Archetypes\n======================================\n\nSummary\n-------\nMaven Archetypes For [Micronaut](http://micronaut.io) Framework.\n\nTo see available archetypes and pick one to instantiate:\n\n```bash\nmvn archetype:generate -Dfilter=cc.gasches.archetypes:micronaut\n```\n\nPrerequisites\n-------------\n\n- JDK 8 (or higher)\n- Maven 3\n\nCreate Service\n----------------\n\nJava:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-java-service \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut \\\n    -DbuildTool=maven\n```\n\nNote: Available `buildTool` options: _gradle_, _maven_ (default). This property is used only for _Dockerfile_ conditional templating.\n\nKotlin:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-kotlin-service \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut \\\n    -DbuildTool=maven\n```\n\nGroovy:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-groovy-service \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut \\\n    -DbuildTool=maven\n```\n\nCreate CLI Application\n----------------\n\nJava:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-java-cli \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut\n```\n\nKotlin:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-kotlin-cli \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut\n```\n\nGroovy:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-groovy-cli \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut\n```\n\nCreate AWS Function\n----------------\n\nJava:\n\n```bash\nmvn archetype:generate \\\n    -DinteractiveMode=false \\\n    -DarchetypeGroupId=cc.gasches.archetypes \\\n    -DarchetypeArtifactId=micronaut-java-function-aws \\\n    -DarchetypeVersion=1.1.0.M2-1 \\\n    -DgroupId=com.example \\\n    -DartifactId=micronaut-example \\\n    -Dpackage=com.example.micronaut\n```\n\nRun Created Application\n----------------\n\nMaven:\n\n```bash\n./mvnw package exec:exec\n```\n\nGradle:\n\n```bash\n./gradlew run\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasches%2Fmicronaut-archetypes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgasches%2Fmicronaut-archetypes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgasches%2Fmicronaut-archetypes/lists"}