{"id":22336721,"url":"https://github.com/kavicastelo/maven-template","last_synced_at":"2026-05-19T09:09:59.965Z","repository":{"id":244047828,"uuid":"814145854","full_name":"kavicastelo/maven-template","owner":"kavicastelo","description":"This is a sample maven package release as a project template. Don't hesitate to contribute the project with your marvels ideas.","archived":false,"fork":false,"pushed_at":"2024-06-12T13:40:36.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-23T04:29:26.188Z","etag":null,"topics":["java-17","maven","template"],"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/kavicastelo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-06-12T12:31:36.000Z","updated_at":"2025-04-05T22:48:29.000Z","dependencies_parsed_at":"2024-06-12T16:46:40.889Z","dependency_job_id":"a1c0d1b8-1882-4b16-b7ee-ad262c3e332e","html_url":"https://github.com/kavicastelo/maven-template","commit_stats":null,"previous_names":["kavicastelo/maven-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/kavicastelo/maven-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kavicastelo%2Fmaven-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kavicastelo%2Fmaven-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kavicastelo%2Fmaven-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kavicastelo%2Fmaven-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kavicastelo","download_url":"https://codeload.github.com/kavicastelo/maven-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kavicastelo%2Fmaven-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33209622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T07:54:09.561Z","status":"ssl_error","status_checked_at":"2026-05-19T07:54:08.508Z","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":["java-17","maven","template"],"created_at":"2024-12-04T06:07:49.488Z","updated_at":"2026-05-19T09:09:59.934Z","avatar_url":"https://github.com/kavicastelo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Maven Template\n\nThis project is a template for creating and deploying a Maven package. The package is hosted on GitHub Packages.\n\n## Getting Started\n\nThese instructions will help you set up the project on your local machine for development and deployment purposes.\n\n### Prerequisites\n\nEnsure you have the following software installed:\n\n- [Java Development Kit (JDK)](https://www.oracle.com/java/technologies/javase-downloads.html)\n- [Apache Maven](https://maven.apache.org/download.cgi)\n- [Git](https://git-scm.com/)\n\n### Installation\n\n1. **Clone the Repository**\n\n   ```sh\n   git clone https://github.com/kavicastelo/maven-template.git\n   cd maven-template\n   ```\n\n2. **Configure Maven**\n   Ensure your `settings.xml` is configured with your GitHub credentials. This file is usually located in the `.m2`\n   directory in your home directory.\n\n   ```xml\n   \u003csettings\u003e\n     \u003cservers\u003e\n       \u003cserver\u003e\n         \u003cid\u003egithub\u003c/id\u003e\n         \u003cusername\u003eyour_github_username\u003c/username\u003e\n         \u003cpassword\u003eyour_github_password\u003c/password\u003e\n       \u003c/server\u003e\n     \u003c/servers\u003e\n   \u003c/settings\u003e\n   ```\n\n3. **Build the Package**\n   Run the following command to build the project:\n\n   ```sh\n   mvn clean install\n   ```\n\n### Deployment\n\nTo deploy the package to GitHub Packages, run:\n\n```sh\nmvn clean deploy\n```\n\n### Distribution Management\n\nEnsure your `pom.xml` includes the correct `distributionManagement` section:\n\n```xml\n\n\u003cdistributionManagement\u003e\n    \u003csnapshotRepository\u003e\n        \u003cid\u003egithub\u003c/id\u003e\n        \u003curl\u003ehttps://maven.pkg.github.com/kavicastelo/maven-template\u003c/url\u003e\n    \u003c/snapshotRepository\u003e\n    \u003crepository\u003e\n        \u003cid\u003egithub\u003c/id\u003e\n        \u003curl\u003ehttps://maven.pkg.github.com/kavicastelo/maven-template\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/distributionManagement\u003e\n```\n\n### Using the Package\n\nTo use this package in your own Maven project, add the following to your `pom.xml`:\n\n1. Repository Configuration\n\n   ```xml\n   \u003crepositories\u003e\n      \u003crepository\u003e\n         \u003cid\u003egithub\u003c/id\u003e\n         \u003curl\u003ehttps://maven.pkg.github.com/kavicastelo/maven-template\u003c/url\u003e\n      \u003c/repository\u003e\n   \u003c/repositories\u003e\n   ```\n\n2. Dependency Declaration\n\n   ```xml\n   \u003cdependencies\u003e\n      \u003cdependency\u003e\n         \u003cgroupId\u003ecom.example\u003c/groupId\u003e\n         \u003cartifactId\u003emaven-template\u003c/artifactId\u003e\n         \u003cversion\u003e1.0-SNAPSHOT\u003c/version\u003e\n      \u003c/dependency\u003e\n   \u003c/dependencies\u003e\n   ```\n\n### Contributing\n\n1. Fork the repository.\n2. Create your feature branch: `git checkout -b feature/my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin feature/my-new-feature`\n5. Submit a pull request.\n\n### License\nThis project is licensed under the Apache License, Version 2.0. See the [LICENSE](#LICENSE) file for details.\n\n### Acknowledgements\n- [GitHub Packages Documentation](https://docs.github.com/en/packages)\n- [Maven Documentation](https://maven.apache.org/guides/index.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkavicastelo%2Fmaven-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkavicastelo%2Fmaven-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkavicastelo%2Fmaven-template/lists"}