First off, thanks for taking the time to contribute!
The following is a set of guidelines for contributing to SCA. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
- Check plugin version at build.gradle@version. i.e. `2.7.1-SNAPSHOT
- Build the plugin
./gradlew assemble
- Add SCA's build dir to your project's buildscript at your root
build.gradle
.
buildscript {
repositories {
// ...
flatDir dirs: '/Users/ltorvalds/Projects/static-code-analysis-plugin/build/libs'``
// ...
}
- That's it! Sync your project and try your changes.