├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── auto-merge.yml └── workflows │ ├── codeql.yaml │ ├── dokka.yaml │ ├── gradle-wrapper.yaml │ └── gradle.yaml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .java-version ├── .nvmrc ├── LICENSE ├── README.md ├── api └── spotbugs-gradle-plugin.api ├── commitlint.config.js ├── gradle.properties ├── gradle ├── HEADER.txt ├── spotless.bat ├── spotless.sh └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── renovate.json ├── settings.gradle.kts └── src ├── functionalTest └── groovy │ └── com │ └── github │ └── spotbugs │ └── snom │ ├── AndroidFunctionalTest.groovy │ ├── BaseFunctionalTest.groovy │ ├── BasePluginFunctionalTest.groovy │ ├── CacheabilityFunctionalTest.groovy │ ├── ExtensionFunctionalTest.groovy │ ├── GradleJavaToolchainsSupportFunctionalTest.groovy │ ├── Issue196.groovy │ ├── Issue909.groovy │ ├── Issue910.groovy │ ├── KotlinBuildScriptFunctionalTest.groovy │ ├── MultiProjectFunctionalTest.groovy │ ├── ReportFunctionalTest.groovy │ └── StandardFunctionalTest.groovy ├── main └── kotlin │ └── com │ └── github │ └── spotbugs │ └── snom │ ├── Confidence.kt │ ├── Effort.kt │ ├── Extensions.kt │ ├── SpotBugsBasePlugin.kt │ ├── SpotBugsExtension.kt │ ├── SpotBugsPlugin.kt │ ├── SpotBugsReport.kt │ ├── SpotBugsTask.kt │ └── internal │ ├── OutputScanner.kt │ ├── SemanticVersion.kt │ ├── SpotBugsHtmlReport.kt │ ├── SpotBugsRunner.kt │ ├── SpotBugsRunnerForHybrid.kt │ ├── SpotBugsRunnerForJavaExec.kt │ ├── SpotBugsSarifReport.kt │ ├── SpotBugsTaskFactory.kt │ ├── SpotBugsTextReport.kt │ ├── SpotBugsXmlReport.kt │ └── package-info.java └── test └── kotlin └── com └── github └── spotbugs └── snom ├── SpotBugsPluginSpec.kt └── internal ├── SemanticVersionSpec.kt └── SpotBugsTaskFactorySpec.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [KengoTODA] 2 | -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/dokka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/workflows/dokka.yaml -------------------------------------------------------------------------------- /.github/workflows/gradle-wrapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/workflows/gradle-wrapper.yaml -------------------------------------------------------------------------------- /.github/workflows/gradle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.github/workflows/gradle.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24.12.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /api/spotbugs-gradle-plugin.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/api/spotbugs-gradle-plugin.api -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/HEADER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle/HEADER.txt -------------------------------------------------------------------------------- /gradle/spotless.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle/spotless.bat -------------------------------------------------------------------------------- /gradle/spotless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle/spotless.sh -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/AndroidFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/AndroidFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/BaseFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/BaseFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/BasePluginFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/BasePluginFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/CacheabilityFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/CacheabilityFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/ExtensionFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/ExtensionFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/GradleJavaToolchainsSupportFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/GradleJavaToolchainsSupportFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/Issue196.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/Issue196.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/Issue909.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/Issue909.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/Issue910.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/Issue910.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/KotlinBuildScriptFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/KotlinBuildScriptFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/MultiProjectFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/MultiProjectFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/ReportFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/ReportFunctionalTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/github/spotbugs/snom/StandardFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/functionalTest/groovy/com/github/spotbugs/snom/StandardFunctionalTest.groovy -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/Confidence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/Confidence.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/Effort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/Effort.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/Extensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/SpotBugsBasePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/SpotBugsBasePlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/SpotBugsExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/SpotBugsExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/SpotBugsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/SpotBugsPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/SpotBugsReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/SpotBugsReport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/SpotBugsTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/SpotBugsTask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/OutputScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/OutputScanner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SemanticVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SemanticVersion.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsHtmlReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsHtmlReport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunnerForHybrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunnerForHybrid.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunnerForJavaExec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsRunnerForJavaExec.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsSarifReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsSarifReport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsTaskFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsTaskFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsTextReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsTextReport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsXmlReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/SpotBugsXmlReport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/spotbugs/snom/internal/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/main/kotlin/com/github/spotbugs/snom/internal/package-info.java -------------------------------------------------------------------------------- /src/test/kotlin/com/github/spotbugs/snom/SpotBugsPluginSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/test/kotlin/com/github/spotbugs/snom/SpotBugsPluginSpec.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/spotbugs/snom/internal/SemanticVersionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/test/kotlin/com/github/spotbugs/snom/internal/SemanticVersionSpec.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/spotbugs/snom/internal/SpotBugsTaskFactorySpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-gradle-plugin/HEAD/src/test/kotlin/com/github/spotbugs/snom/internal/SpotBugsTaskFactorySpec.kt --------------------------------------------------------------------------------