{"id":26038304,"url":"https://github.com/netgrif/nae-modul-maven-plugin","last_synced_at":"2026-04-19T05:34:02.029Z","repository":{"id":281030921,"uuid":"943883811","full_name":"netgrif/nae-modul-maven-plugin","owner":"netgrif","description":"Maven plugin for building Netgrif Application Engine module","archived":false,"fork":false,"pushed_at":"2025-09-01T15:26:06.000Z","size":94,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-15T21:30:30.980Z","etag":null,"topics":["application-engine","java-21","maven","maven-plugin","nae"],"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/netgrif.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-06T12:26:56.000Z","updated_at":"2025-09-01T15:22:18.000Z","dependencies_parsed_at":"2025-05-26T09:15:35.857Z","dependency_job_id":null,"html_url":"https://github.com/netgrif/nae-modul-maven-plugin","commit_stats":null,"previous_names":["netgrif/nae-modul-maven-plugin"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/netgrif/nae-modul-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netgrif%2Fnae-modul-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netgrif%2Fnae-modul-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netgrif%2Fnae-modul-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netgrif%2Fnae-modul-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netgrif","download_url":"https://codeload.github.com/netgrif/nae-modul-maven-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netgrif%2Fnae-modul-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31996441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["application-engine","java-21","maven","maven-plugin","nae"],"created_at":"2025-03-07T09:14:11.723Z","updated_at":"2026-04-19T05:34:02.011Z","avatar_url":"https://github.com/netgrif.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Netgrif Application Engine Module Maven Plugin\n\nMaven plugin for building NAE (Netgrif Application Engine) modules.\n\n- GroupId: `com.netgrif`\n- ArtifactId: `nae-module-maven-plugin`\n- Latest version: `1.3.0`\n- Project site: [https://netgrif.github.io/nae-module-maven-plugin](https://netgrif.github.io/nae-module-maven-plugin)\n- Issue\n  tracker: [https://github.com/netgrif/nae-modul-maven-plugin/issues](https://github.com/netgrif/nae-modul-maven-plugin/issues)\n- License: Apache-2.0\n\n## Features\n\n- Streamlines the build lifecycle for NAE modules\n- Provides Maven goals to validate and package modules consistently\n- Integrates with Maven reporting\n\n## Requirements\n\n- Java 21 (JDK 21) to build and run\n- Apache Maven (any current stable version should work)\n\n## Goals\n\n- build - building package of NAE module\n\n## Usage\n\n### Add as the maven plugin into the pom.xml\n\n```xml\n\n\u003cplugin\u003e\n    \u003cgroupId\u003ecom.netgrif\u003c/groupId\u003e\n    \u003cartifactId\u003enae-module-maven-plugin\u003c/artifactId\u003e\n    \u003cversion\u003e1.3.0\u003c/version\u003e\n    \u003cconfiguration\u003e\n        \u003csingleOutput\u003etrue\u003c/singleOutput\u003e\n        \u003cexcludes\u003e\n            \u003cexclude\u003e*lombok*\u003c/exclude\u003e\n        \u003c/excludes\u003e\n    \u003c/configuration\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003ebuild-module\u003c/id\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003ebuild\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n\u003c/plugin\u003e\n```\n\n### Invoke a goal\n\nYou can run any goal directly with its fully qualified name:\n\n``` bash\nmvn com.netgrif:nae-module-maven-plugin:1.3.0:build\n```\n\n## Building from source\n\n``` bash\n# Clone\ngit clone https://github.com/netgrif/nae-modul-maven-plugin.git\ncd nae-modul-maven-plugin\n\n# Build\nmvn -U -DskipTests clean install\n```\n\nPrerequisites:\n\n- JDK 21 available on PATH (JAVA_HOME set to your JDK 21)\n- Maven installed\n\n## Contributing\n\nContributions are welcome!\n\n- Read [contribution guidelines](https://github.com/netgrif/nae-modul-maven-plugin?tab=contributing-ov-file).\n- Report\n  issues: [https://github.com/netgrif/nae-modul-maven-plugin/issues](https://github.com/netgrif/nae-modul-maven-plugin/issues).\n- Open pull requests with clear descriptions.\n- Please follow standard Maven project conventions and include tests where applicable.\n\n## License\n\nLicensed under the Apache License, Version 2.0.\n\n- License text: [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetgrif%2Fnae-modul-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetgrif%2Fnae-modul-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetgrif%2Fnae-modul-maven-plugin/lists"}