We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To lint a project, we can use run-task from nx-maven.
Based on : https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html
The text was updated successfully, but these errors were encountered:
1- Create a lib for checkstyle linting: build-tools-checkstyle
build-tools-checkstyle
2- add maven-checkstyle-plugin to root pom.xml
maven-checkstyle-plugin
3- add target config to nx.json
nx.json
"maven-checkstyle-lint": { "cache": true, "dependsOn": [ { "projects": ["build-tools-checkstyle"], "target": "build" } ] }
4- add target to project.json
project.json
"maven-checkstyle-lint": { "executor": "@jnxplus/nx-maven:run-task", "options": { "task": "checkstyle:check" } }
Sorry, something went wrong.
code is here https://github.com/khalilou88/jnxplus-examples
No branches or pull requests
To lint a project, we can use run-task from nx-maven.
Based on : https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html
The text was updated successfully, but these errors were encountered: