{"id":26695159,"url":"https://github.com/r8vnhill/echo-app-maven","last_synced_at":"2026-04-30T03:33:51.613Z","repository":{"id":284437887,"uuid":"951525723","full_name":"r8vnhill/echo-app-maven","owner":"r8vnhill","description":"✨ A modular Java project built with Maven to accompany two [DIBS](https://dibs.pages.dev) lessons: from basic project setup to multi-module architecture with shared logic.","archived":false,"fork":false,"pushed_at":"2025-04-06T21:55:46.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T06:07:42.776Z","etag":null,"topics":["build-system","dibs-course","echo-app","educational","java","maven","modular-architecture","multi-module","software-libraries"],"latest_commit_sha":null,"homepage":"https://dibs.pages.dev","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/r8vnhill.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-19T20:22:06.000Z","updated_at":"2025-04-06T22:01:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"d1a4b26d-da84-46c5-8db9-9d900c00452d","html_url":"https://github.com/r8vnhill/echo-app-maven","commit_stats":null,"previous_names":["r8vnhill/echo-app-maven"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/r8vnhill/echo-app-maven","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r8vnhill%2Fecho-app-maven","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r8vnhill%2Fecho-app-maven/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r8vnhill%2Fecho-app-maven/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r8vnhill%2Fecho-app-maven/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r8vnhill","download_url":"https://codeload.github.com/r8vnhill/echo-app-maven/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r8vnhill%2Fecho-app-maven/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32453838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["build-system","dibs-course","echo-app","educational","java","maven","modular-architecture","multi-module","software-libraries"],"created_at":"2025-03-26T19:17:22.483Z","updated_at":"2026-04-30T03:33:50.001Z","avatar_url":"https://github.com/r8vnhill.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# echo-app-maven\n\nThis repository contains the source code for a modular Java project built with [Apache Maven](https://maven.apache.org/). It is designed to accompany **two lessons** from the [DIBS course](https://dibs.pages.dev), which walk you through the process of creating and scaling a Maven-based Java project.\n\n\u003e ✍️ While both lessons are written in Spanish, the code in this repository is fully in **English** to ensure accessibility for a broader audience.\n\n## 📚 Companion Lessons\n\n- [✅ Creating a Basic Maven Project](https://dibs.pages.dev/docs/build-systems/init/maven/)  \n  Learn how to generate a simple Maven project using the `quickstart` archetype, define its metadata (`groupId`, `artifactId`, etc.), understand the default folder structure, and run your first Java app.\n\n- [🏗️ Modular Architecture with Maven and Java](https://dibs.pages.dev/docs/build-systems/modular-design/maven.mdx/)  \n  Take your project to the next level by transforming it into a multi-module setup with reusable components. You'll learn to separate responsibilities using a `lib` module and an `app` module, structure your POM files accordingly, and compile and run modular apps from the command line.\n\n## 🧱 Project Structure\n\nThis is a **multi-module Maven project** with two main modules:\n\n- **`lib`**: A library module that contains a simple utility method.\n- **`app`**: The main application that consumes the utility from `lib`.\n\n```\necho-app-maven/\n├── pom.xml              # Root POM (parent)\n├── lib/\n│   ├── pom.xml          # Library module\n│   └── src/main/java/com/github/username/echo/EchoUtils.java\n├── app/\n│   ├── pom.xml          # Application module\n│   └── src/main/java/com/github/username/App.java\n```\n\n## 🚀 Build \u0026 Run\n\n### Prerequisites\n\n- Java 8 or higher\n- Apache Maven 3.6 or later\n\n### Commands\n\n**Linux/macOS**\n\n```bash\nmvn clean install \u0026\u0026 \\\nmvn -pl app exec:java \\\n  -Dexec.mainClass=com.github.username.App \\\n  -Dexec.args=\"Ryugamine Celty Shizuo\"\n```\n\n**Windows (PowerShell)**\n\n```powershell\nmvn clean install \u0026\u0026 `\nmvn -pl app 'exec:java' `\n  '-Dexec.mainClass=com.github.username.App' `\n  '-Dexec.args=Ryugamine Celty Shizuo'\n```\n\n## 💬 Output Example\n\nAfter a successful build, the output should include a lot of Maven logs followed by:\n\n```\nRyugamine\nCelty\nShizuo\n```\n\n## 🎓 Topics Covered\n\nThis repository demonstrates:\n\n- Generating a basic Maven project using an archetype.\n- Understanding project metadata: `groupId`, `artifactId`, `version`, and `package`.\n- Creating a multi-module architecture with shared configuration.\n- Reusing logic across modules using Maven dependencies.\n- Running Java programs via `exec-maven-plugin`.\n\n## ⚖️ License\n\nThis project is licensed under the [BSD-2-Clause License](LICENSE). Feel free to use, modify, and distribute it as per the terms of the license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr8vnhill%2Fecho-app-maven","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr8vnhill%2Fecho-app-maven","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr8vnhill%2Fecho-app-maven/lists"}