{"id":15069078,"url":"https://github.com/pante/elementary","last_synced_at":"2025-04-10T17:36:06.614Z","repository":{"id":37886250,"uuid":"328532143","full_name":"Pante/elementary","owner":"Pante","description":"A suite of libraries that simplify creating and unit testing annotation processors.","archived":false,"fork":false,"pushed_at":"2024-10-22T09:02:59.000Z","size":1273,"stargazers_count":41,"open_issues_count":11,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-23T04:40:27.846Z","etag":null,"topics":["annotation-processor","annotation-processors","annotation-tool","hacktoberfest","java","java-11","java-17","java-compiler","junit-extension","junit5","junit5-extension","testing"],"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/Pante.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":["Pante"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2021-01-11T02:54:04.000Z","updated_at":"2024-10-22T05:34:23.000Z","dependencies_parsed_at":"2023-12-15T02:14:58.805Z","dependency_job_id":"1b846325-1733-41f3-a75c-26eac7cb6f3b","html_url":"https://github.com/Pante/elementary","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pante%2Felementary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pante%2Felementary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pante%2Felementary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pante%2Felementary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pante","download_url":"https://codeload.github.com/Pante/elementary/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248262032,"owners_count":21074230,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["annotation-processor","annotation-processors","annotation-tool","hacktoberfest","java","java-11","java-17","java-compiler","junit-extension","junit5","junit5-extension","testing"],"created_at":"2024-09-25T01:40:21.287Z","updated_at":"2025-04-10T17:36:06.586Z","avatar_url":"https://github.com/Pante.png","language":"Java","funding_links":["https://github.com/sponsors/Pante"],"categories":[],"sub_categories":[],"readme":"# Elementary - Simplify creating and testing annotation processors.\n\n[![Elementary](https://github.com/Pante/elementary/actions/workflows/build.yaml/badge.svg)](https://github.com/Pante/elementary/actions/workflows/build.yaml)\n[![Discord](https://img.shields.io/discord/140273735772012544.svg?style=flat-square)](https://discord.gg/uE4C9NQ)\n\nTo get started, check out\nthe [docs](./docs) \u0026 [Gradle example](https://github.com/toolforger/elementary-demo).\n\n## Elementary - JUnit extensions to test compilation \u0026 annotation processors\n\n[![releases-maven](https://img.shields.io/maven-central/v/com.karuslabs/elementary)](https://central.sonatype.com/artifact/com.karuslabs/elementary/)\n[![javadoc](https://img.shields.io/badge/javadoc-stable-brightgreen.svg)](https://www.javadoc.io/doc/com.karuslabs/elementary)\n\nThis project is mature. It requires Java 11. \n\nUsed by OSS projects such as Quarkus, Jenkins \u0026 Redis Spring OM.\n\n### Features\n* Allow blackbox \u0026 whitebox testing of annotation processing.\n* First class integration with JUnit 5, including parameterized tests.\n* Same-file declaration of tests \u0026 test cases.\n* Support for Java 9 modules.\n\n```XML\n\u003c!-- Requires JUnit 5.9.3 \u0026 above --\u003e\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003eorg.junit.jupiter\u003c/groupId\u003e\n    \u003cartifactId\u003ejunit-jupiter-api\u003c/artifactId\u003e\n    \u003cversion\u003e5.9.3\u003c/version\u003e\n    \u003cscope\u003etest\u003c/scope\u003e\n  \u003c/dependency\u003e\n\n  \u003cdependency\u003e\n    \u003cgroupId\u003eorg.junit.jupiter\u003c/groupId\u003e\n    \u003cartifactId\u003ejunit-jupiter-params\u003c/artifactId\u003e\n    \u003cversion\u003e5.9.3\u003c/version\u003e\n    \u003cscope\u003etest\u003c/scope\u003e\n  \u003c/dependency\u003e\n\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.karuslabs\u003c/groupId\u003e\n    \u003cartifactId\u003eelementary\u003c/artifactId\u003e\n    \u003cversion\u003e3.0.0\u003c/version\u003e\n    \u003cscope\u003etest\u003c/scope\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n```xml\n\u003c!-- Required if you're using the @Introspect annotation. See tour.md for a Gradle equivalent --\u003e\n\u003cbuild\u003e\n  \u003cplugins\u003e\n    \u003cplugin\u003e\n      \u003cartifactId\u003emaven-resources-plugin\u003c/artifactId\u003e\n      \u003cversion\u003e3.2.0\u003c/version\u003e\n      \u003cexecutions\u003e\n        \u003cexecution\u003e\n          \u003cid\u003ecopy-resources\u003c/id\u003e\n          \u003cphase\u003eprocess-test-classes\u003c/phase\u003e\n          \u003cgoals\u003e\n            \u003cgoal\u003ecopy-resources\u003c/goal\u003e\n          \u003c/goals\u003e\n          \u003cconfiguration\u003e\n            \u003coutputDirectory\u003e${basedir}/target/test-classes/\u003c/outputDirectory\u003e\n            \u003cresources\u003e\n              \u003cresource\u003e\n                \u003cdirectory\u003e${basedir}/src/test/java/\u003c/directory\u003e\n                \u003cincludes\u003e\n                  \u003cinclude\u003e**/*.*\u003c/include\u003e\n                \u003c/includes\u003e\n              \u003c/resource\u003e\n            \u003c/resources\u003e\n          \u003c/configuration\u003e\n        \u003c/execution\u003e\n      \u003c/executions\u003e\n    \u003c/plugin\u003e\n  \u003c/plugins\u003e\n\u003c/build\u003e\n```\n\n## Utilitary - Utilities for annotation processors.\n\n[![releases-maven](https://img.shields.io/maven-central/v/com.karuslabs/utilitary)](https://central.sonatype.com/artifact/com.karuslabs/utilitary/)\n[![javadoc](https://img.shields.io/badge/javadoc-stable-brightgreen.svg)](https://www.javadoc.io/doc/com.karuslabs/utilitary)\n\nThis project is mature. It requires Java 11.\n\n```XML\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.karuslabs\u003c/groupId\u003e\n  \u003cartifactId\u003eutilitary\u003c/artifactId\u003e\n  \u003cversion\u003e3.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpante%2Felementary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpante%2Felementary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpante%2Felementary/lists"}