{"id":23949764,"url":"https://github.com/carter907/better-quickstart-archetype","last_synced_at":"2026-04-26T08:35:08.970Z","repository":{"id":227102563,"uuid":"770456203","full_name":"Carter907/better-quickstart-archetype","owner":"Carter907","description":"An up-to-date maven archetype that you can install locally and use as a basic java project template using the maven generate:archetype goal","archived":false,"fork":false,"pushed_at":"2024-12-17T05:29:28.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-15T09:40:58.121Z","etag":null,"topics":["archetypes","java","maven","template"],"latest_commit_sha":null,"homepage":"https://dev.to/carter907/an-updated-guide-to-maven-archetypes-3eah","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/Carter907.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":"2024-03-11T15:28:47.000Z","updated_at":"2024-12-17T05:29:31.000Z","dependencies_parsed_at":"2024-03-11T17:11:52.206Z","dependency_job_id":"e297aae7-890d-4543-b078-2178a44d438c","html_url":"https://github.com/Carter907/better-quickstart-archetype","commit_stats":null,"previous_names":["carter907/better-quickstart-archetype"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Carter907/better-quickstart-archetype","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Carter907%2Fbetter-quickstart-archetype","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Carter907%2Fbetter-quickstart-archetype/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Carter907%2Fbetter-quickstart-archetype/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Carter907%2Fbetter-quickstart-archetype/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Carter907","download_url":"https://codeload.github.com/Carter907/better-quickstart-archetype/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Carter907%2Fbetter-quickstart-archetype/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32290823,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T08:29:33.829Z","status":"ssl_error","status_checked_at":"2026-04-26T08:29:18.366Z","response_time":129,"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":["archetypes","java","maven","template"],"created_at":"2025-01-06T11:51:30.044Z","updated_at":"2026-04-26T08:35:08.947Z","avatar_url":"https://github.com/Carter907.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Maven Archetype - Better Quickstart\n\nThis repository contains an updated Maven archetype designed to streamline project creation using the `mvn archetype:generate` goal. It provides a modern, customizable project template for Java developers.\n\n## Overview\nMaven archetypes are project templates that allow you to generate consistent project structures. This updated archetype simplifies the creation of new Maven projects with:\n- Modern configurations\n- Predefined dependencies and plugins\n- Support for best practices and clean project organization\n\n### Features\n- **Up-to-Date Dependencies**: Preconfigured dependencies compatible with the latest Java and Maven versions\n- **Flexible Customization**: Prompts for groupId, artifactId, package, and version\n- **Clean Project Structure**: Follows Maven's standard directory layout\n- **Best Practices**: Includes `src/main`, `src/test`, and other essentials for a Maven project\n\n---\n\n## Installation\nTo install the Maven archetype locally, clone this repository and run:\n\n```bash\ngit clone https://github.com/\u003cyour-repo\u003e/updated-maven-archetype.git\ncd updated-maven-archetype\nmvn clean install\n```\n\n---\n\n## Usage\nTo generate a new project using this archetype, run the following command:\n\n```bash\nmvn archetype:generate \\\n    -DarchetypeGroupId=com.example \\\n    -DarchetypeArtifactId=better-quickstart \\\n    -DarchetypeVersion=1.0.0 \\\n    -DgroupId=com.mycompany.app \\\n    -DartifactId=my-app \\\n    -Dversion=1.0.0-SNAPSHOT\n```\n\nReplace the parameters as follows:\n- **archetypeGroupId**: The groupId of the archetype\n- **archetypeArtifactId**: The artifactId of the archetype\n- **archetypeVersion**: The version of the archetype\n- **groupId**: Your project's groupId\n- **artifactId**: Your project's artifactId\n- **version**: Your project's version\n\n### Resulting Project Structure\nThe generated project will have the following structure:\n\n```plaintext\nmy-app/\n├── pom.xml                  # Project configuration file\n└── src/\n    ├── main/\n    │   ├── java/            # Application source code\n    │   └── resources/       # Configuration and assets\n    └── test/\n        ├── java/            # Test source code\n        └── resources/       # Test assets\n```\n\n---\n\n## Customizing the Archetype\nYou can update the archetype by modifying the files in:\n- `src/main/resources/archetype-resources` - Template files for the generated project\n- `archetype-metadata.xml` - Metadata for customization and filtering\n\nReinstall the archetype after making changes:\n\n```bash\nmvn clean install\n```\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarter907%2Fbetter-quickstart-archetype","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarter907%2Fbetter-quickstart-archetype","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarter907%2Fbetter-quickstart-archetype/lists"}