{"id":24064498,"url":"https://github.com/dfm18/javapad","last_synced_at":"2026-05-03T15:32:42.006Z","repository":{"id":250787436,"uuid":"828024131","full_name":"dfm18/javapad","owner":"dfm18","description":"JavaPad is a simple and user-friendly text editor written in Java.","archived":false,"fork":false,"pushed_at":"2024-11-19T11:35:40.000Z","size":1005,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T06:34:26.362Z","etag":null,"topics":["dependency-injection","design-patterns","java","java-swing-project","junit","maven","notepad","swing","swing-gui","swing-gui-application"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dfm18.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}},"created_at":"2024-07-12T23:09:54.000Z","updated_at":"2024-11-19T11:35:44.000Z","dependencies_parsed_at":"2024-07-30T04:35:49.927Z","dependency_job_id":"ffea81a4-27a1-44e4-8989-514cdc1fd744","html_url":"https://github.com/dfm18/javapad","commit_stats":null,"previous_names":["dfortch18/javapad","dafexdev/javapad","dfm18/javapad"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dfm18/javapad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fjavapad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fjavapad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fjavapad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fjavapad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dfm18","download_url":"https://codeload.github.com/dfm18/javapad/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fjavapad/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32575049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["dependency-injection","design-patterns","java","java-swing-project","junit","maven","notepad","swing","swing-gui","swing-gui-application"],"created_at":"2025-01-09T10:37:12.536Z","updated_at":"2026-05-03T15:32:41.986Z","avatar_url":"https://github.com/dfm18.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JavaPad\n\n[![](https://img.shields.io/badge/OpenJDK-ED8B00?style=for-the-badge\u0026logo=openjdk\u0026logoColor=white)](https://openjdk.org/)\n[![](https://img.shields.io/badge/apache_maven-C71A36?style=for-the-badge\u0026logo=apachemaven\u0026logoColor=white)](https://maven.apache.org/)\n[![](https://img.shields.io/badge/Junit5-25A162?style=for-the-badge\u0026logo=junit5\u0026logoColor=white)](https://junit.org/junit5/)\n\nJavaPad is a simple and user-friendly text editor written in Java. It includes essential features such as file operations, undo/redo actions, theme customization, and multilingual support.\n\n![](./assets/javapad.gif)\n\n## Features\n\n- **Open, Save, and Create Files:** Easily manage your text files.\n- **Undo, Redo, Cut, Copy, Paste:** Full support for text editing operations.\n- **Light and Dark Themes:** Choose between light, dark, and native themes to suit your preferences.\n- **Editor Customization:** Personalize the appearance and behavior of the editor.\n- **Multilingual Support:** Available in English, Spanish and French.\n\n## Installation and use\n\n1. Clone the repository\n    ```bash\n    git clone https://github.com/dafexDev/javapad.git\n    ```\n2. Navigate to the directory\n    ```bash\n   cd javapad\n   ```\n3. Build the project using Maven\n    ```bash\n   mvn clean install\n   ```\n\n## Usage\n\nTo run JavaPad, use the following command after building the project:\n```bash\njava -jar target/javapad-1.1.jar\n```\n\n## Development\n\n### Prerequisites\n\n- Java 21 or higher\n- Maven 3.6 or higher\n\n### Building the project\n\nTo build the project, run:\n```bash\nmvn clean install\n```\n\n### Running Tests\n\nTo execute tests, run:\n\n```bash\nmvn test\n```\n\n### Code coverage\n\nCode coverage reports can be generated using Jacoco. To generate the report, run:\n\n```bash\nmvn test jacoco:report\n```\n\nThe report will be available at target/site/jacoco/index.html.\n\n## Contributing\n\nContributions are welcome! Please fork the repository and create a pull request with your changes. Ensure that you adhere to the project's coding standards and include appropriate tests for your contributions.\n\n1. Fork the repository.\n2. Create a feature branch (`git checkout -b feature/your-feature`).\n3. Commit your changes (`git commit -m 'Add some feature'`).\n4. Push to the branch (`git push origin feature/your-feature`).\n5. Create a new Pull Request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.\n\n## Acknowledgements\n\n- [FlatLaf](https://github.com/JFormDesigner/FlatLaf) for the sleek look and feel.\n- [Log4j](https://logging.apache.org/log4j/2.x/) for logging.\n- [AssertJ](https://github.com/assertj/assertj) for fluent assertions in testing.\n- [JUnit 5](https://junit.org/junit5/) for the testing framework.\n- [Mockito](https://site.mockito.org/) for mocking in tests.\n- [Weld SE](https://weld.cdi-spec.org/) for the CDI implementation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfm18%2Fjavapad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdfm18%2Fjavapad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfm18%2Fjavapad/lists"}