├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yaml │ ├── codeql.yaml │ ├── coveralls.yaml │ ├── it-maven-3.6.3.yaml │ ├── it-maven-4.0.0.yaml │ ├── it.yaml │ └── sonatype.yaml ├── .gitignore ├── .mvn ├── extensions.xml ├── jvm.config ├── maven.config ├── settings.xml └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── LICENSE ├── LICENSE_HEADER ├── README.md ├── format.xml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── renovate.json └── src ├── it-src └── test │ └── java │ └── org │ └── codehaus │ └── mojo │ └── spotbugsmavenplugin │ └── it │ ├── App.java │ └── FooTest.java ├── it-tools ├── build-tools │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── baseline │ │ │ ├── spotbugs-baseline-other.xml │ │ │ ├── spotbugs-baseline-outputstream.xml │ │ │ └── spotbugs-baseline.xml │ │ │ ├── filters │ │ │ └── lib-filter2.xml │ │ │ └── whizbang │ │ │ └── lib-filter.xml │ └── verify.groovy └── prime │ ├── invoker.properties │ ├── pom.xml │ ├── src │ └── main │ │ └── resources │ │ ├── filters │ │ └── lib-filter2.xml │ │ └── whizbang │ │ └── lib-filter.xml │ └── verify.groovy ├── it ├── MFINDBUGS-178 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── basic-1 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── change-xml-filename │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-bug-file-multi-list │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-bug-file-multi │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-bug-file │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-bug-only-test-sources │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-fail │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-failThreshold │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-jvmargs │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-multi-filter-dups │ ├── invoker.properties │ ├── module1 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── module2 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── config │ │ │ │ └── spotbugs-exclude-filters.xml │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-multi │ ├── invoker.properties │ ├── modules │ │ ├── module-1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ └── site.xml │ │ ├── module-2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ └── site.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-no-missing-classes │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── test │ │ │ │ └── App.java │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-nofail │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-pluginList-repo │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-skip │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check-timeout │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── check │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── chooseVisitors │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── common.xml ├── effort-default │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── effort-max │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── effort-min │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── empty │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── resources │ │ │ │ └── app.properties │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── encoding-utf8 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── exclude-modules │ ├── invoker.properties │ ├── module1 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── excludeBugs.xml │ │ │ └── site │ │ │ └── site.xml │ ├── module2 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── excludeBugs.xml │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── exclude-multi-list │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── exclude-multi │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── exclude-root │ ├── invoker.properties │ ├── module-1 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── spotbugs-exclude.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── exclude │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── excludeBugsFile │ ├── excludeBugs1.xml │ ├── excludeBugs2.xml │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── excludeFileInOutputLocation │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── experimental │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── html-report │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── include-multi-list │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── include-multi │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── include │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── maxRank │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── multi-build │ ├── invoker.properties │ ├── modules │ │ ├── module-1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ └── site.xml │ │ ├── module-2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ └── site.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── multi │ ├── invoker.properties │ ├── modules │ │ ├── module-1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ ├── site.xml │ │ │ │ └── xdoc │ │ │ │ └── index.xml │ │ ├── module-2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ ├── site.xml │ │ │ │ └── xdoc │ │ │ │ └── index.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── nested │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── no-src │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ ├── site │ │ │ └── site.xml │ │ └── test │ │ │ └── java │ │ │ └── EmptyJUnitTest.java │ └── verify.groovy ├── no-testsrc │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── omitVisitors │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── onlyAnalyze │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── onlyAnalyzeFileSource │ ├── invoker.properties │ ├── only-analyze.txt │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── pluginList-repo │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── pluginList │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── relaxed │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── sarif-1 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── sarif-2 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── settings.xml ├── site-brazil │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── site-default │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── site-french │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── site-spanish │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── skip │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── skipEmpty │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── test │ │ │ │ └── App.java │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── src │ └── site │ │ └── site.xml ├── systemPropertyVariables │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── threaded │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── threshold-experimental │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── threshold-high │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── threshold-low │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── trace │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── userPrefs-override │ ├── edu.umd.cs.findbugs.core.prefs │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── userPrefs │ ├── edu.umd.cs.findbugs.core.prefs │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── verify-clean │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── verify-fail │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy └── verify │ ├── invoker.properties │ ├── pom.xml │ ├── src │ └── site │ │ └── site.xml │ └── verify.groovy ├── main ├── groovy │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── spotbugs │ │ ├── BaseViolationCheckMojo.groovy │ │ ├── CheckMojo.groovy │ │ ├── PluginArtifact.groovy │ │ ├── ResourceHelper.groovy │ │ ├── SourceFileIndexer.groovy │ │ ├── SpotBugsGui.groovy │ │ ├── SpotBugsInfo.groovy │ │ ├── SpotBugsMojo.groovy │ │ ├── SpotBugsPluginsTrait.groovy │ │ ├── SpotbugsReportGenerator.groovy │ │ ├── VerifyMojo.groovy │ │ └── XDocsReporter.groovy ├── resources │ ├── META-INF │ │ └── m2e │ │ │ └── lifecycle-mapping-metadata.xml │ ├── spotbugs.properties │ ├── spotbugs_en.properties │ ├── spotbugs_es.properties │ ├── spotbugs_fr.properties │ ├── spotbugs_no_NO.properties │ └── spotbugs_pt_BR.properties └── tools │ └── spotbugs-exclude-filters.xml ├── site ├── apt │ ├── examples │ │ ├── multi-module-config.apt.vm │ │ └── violationChecking.apt.vm │ ├── index.apt.vm │ └── usage.apt.vm ├── fml │ └── faq.fml ├── resources │ └── examples │ │ ├── css │ │ ├── apache-maven-fluido-2.1.0.min.css │ │ ├── print.css │ │ └── site.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ ├── accessories-text-editor.png │ │ ├── add.gif │ │ ├── apache-maven-project-2.png │ │ ├── fix.gif │ │ ├── icon_error_sml.gif │ │ ├── icon_help_sml.gif │ │ ├── icon_info_sml.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_warning_sml.gif │ │ ├── logos │ │ │ ├── build-by-maven-black.png │ │ │ ├── build-by-maven-white.png │ │ │ └── maven-feather.png │ │ ├── profiles │ │ │ ├── pre-release.png │ │ │ ├── retired.png │ │ │ └── sandbox.png │ │ ├── remove.gif │ │ ├── rss.png │ │ ├── update.gif │ │ └── window-new.png │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ │ ├── js │ │ └── apache-maven-fluido-2.1.0.min.js │ │ ├── project-reports.html │ │ ├── spotbugs.html │ │ ├── spotbugs.xml │ │ ├── spotbugsXml.xml │ │ ├── xref-test │ │ ├── allclasses-frame.html │ │ ├── index.html │ │ ├── org │ │ │ └── codehaus │ │ │ │ └── mojo │ │ │ │ └── spotbugsmavenplugin │ │ │ │ └── it │ │ │ │ ├── App.html │ │ │ │ ├── FooTest.html │ │ │ │ ├── package-frame.html │ │ │ │ └── package-summary.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ └── stylesheet.css │ │ └── xref │ │ ├── A.html │ │ ├── AbstractMissingHashCode.html │ │ ├── AccidentalNonConstructorInInnerClass.html │ │ ├── AnnotationTest.html │ │ ├── AppendingToAnObjectOutputStream.html │ │ ├── ArgumentAssertions.html │ │ ├── ArrayToString.html │ │ ├── AssertionsWithSideEffects.html │ │ ├── AssignedOnlyInCtor.html │ │ ├── AssumeUnsignedBytes.html │ │ ├── UseInitCause.html │ │ ├── UseOfNonHashableClassInHashDataStructure.html │ │ ├── UselessAssignments.html │ │ ├── UselessControlFlow.html │ │ ├── UselessCurrentThread.html │ │ ├── UselessFinalize.html │ │ ├── UselessSCMethods.html │ │ ├── UserAss3rtion.html │ │ ├── UserMistakes.html │ │ ├── allclasses-frame.html │ │ ├── annotations │ │ ├── DetectorUnderTest.html │ │ ├── package-frame.html │ │ └── package-summary.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── stylesheet.css └── site.xml ├── stubfixer └── java │ └── com │ └── github │ └── spotbugs │ └── StubOverrideFixer.java └── test └── groovy └── org └── codehaus └── mojo └── spotbugs ├── BaseViolationCheckMojoTest.groovy ├── CheckMojoTest.groovy ├── PluginArtifactTest.groovy ├── ResourceHelperTest.groovy ├── SourceFileIndexerTest.groovy ├── SpotBugsGuiTest.groovy ├── SpotBugsInfoTest.groovy ├── SpotBugsMojoTest.groovy ├── SpotBugsPluginsTraitTest.groovy ├── SpotbugsReportGeneratorTest.groovy ├── VerifyMojoTest.groovy └── XDocsReporterTest.groovy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hazendaz] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/coveralls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/coveralls.yaml -------------------------------------------------------------------------------- /.github/workflows/it-maven-3.6.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/it-maven-3.6.3.yaml -------------------------------------------------------------------------------- /.github/workflows/it-maven-4.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/it-maven-4.0.0.yaml -------------------------------------------------------------------------------- /.github/workflows/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/it.yaml -------------------------------------------------------------------------------- /.github/workflows/sonatype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.github/workflows/sonatype.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- 1 | -XX:TieredStopAtLevel=1 2 | -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /.mvn/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.mvn/settings.xml -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/LICENSE_HEADER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/format.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /src/it-src/test/java/org/codehaus/mojo/spotbugsmavenplugin/it/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-src/test/java/org/codehaus/mojo/spotbugsmavenplugin/it/App.java -------------------------------------------------------------------------------- /src/it-src/test/java/org/codehaus/mojo/spotbugsmavenplugin/it/FooTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-src/test/java/org/codehaus/mojo/spotbugsmavenplugin/it/FooTest.java -------------------------------------------------------------------------------- /src/it-tools/build-tools/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/invoker.properties -------------------------------------------------------------------------------- /src/it-tools/build-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/pom.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline-other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline-other.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline-outputstream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline-outputstream.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/src/main/resources/baseline/spotbugs-baseline.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/src/main/resources/filters/lib-filter2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/src/main/resources/filters/lib-filter2.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/src/main/resources/whizbang/lib-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/src/main/resources/whizbang/lib-filter.xml -------------------------------------------------------------------------------- /src/it-tools/build-tools/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/build-tools/verify.groovy -------------------------------------------------------------------------------- /src/it-tools/prime/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/prime/invoker.properties -------------------------------------------------------------------------------- /src/it-tools/prime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/prime/pom.xml -------------------------------------------------------------------------------- /src/it-tools/prime/src/main/resources/filters/lib-filter2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/prime/src/main/resources/filters/lib-filter2.xml -------------------------------------------------------------------------------- /src/it-tools/prime/src/main/resources/whizbang/lib-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/prime/src/main/resources/whizbang/lib-filter.xml -------------------------------------------------------------------------------- /src/it-tools/prime/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it-tools/prime/verify.groovy -------------------------------------------------------------------------------- /src/it/MFINDBUGS-178/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/MFINDBUGS-178/invoker.properties -------------------------------------------------------------------------------- /src/it/MFINDBUGS-178/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/MFINDBUGS-178/pom.xml -------------------------------------------------------------------------------- /src/it/MFINDBUGS-178/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/MFINDBUGS-178/src/site/site.xml -------------------------------------------------------------------------------- /src/it/MFINDBUGS-178/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/MFINDBUGS-178/verify.groovy -------------------------------------------------------------------------------- /src/it/basic-1/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/basic-1/invoker.properties -------------------------------------------------------------------------------- /src/it/basic-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/basic-1/pom.xml -------------------------------------------------------------------------------- /src/it/basic-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/basic-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/basic-1/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/basic-1/verify.groovy -------------------------------------------------------------------------------- /src/it/change-xml-filename/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/change-xml-filename/invoker.properties -------------------------------------------------------------------------------- /src/it/change-xml-filename/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/change-xml-filename/pom.xml -------------------------------------------------------------------------------- /src/it/change-xml-filename/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/change-xml-filename/src/site/site.xml -------------------------------------------------------------------------------- /src/it/change-xml-filename/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/change-xml-filename/verify.groovy -------------------------------------------------------------------------------- /src/it/check-bug-file-multi-list/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi-list/invoker.properties -------------------------------------------------------------------------------- /src/it/check-bug-file-multi-list/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi-list/pom.xml -------------------------------------------------------------------------------- /src/it/check-bug-file-multi-list/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi-list/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-bug-file-multi-list/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi-list/verify.groovy -------------------------------------------------------------------------------- /src/it/check-bug-file-multi/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi/invoker.properties -------------------------------------------------------------------------------- /src/it/check-bug-file-multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi/pom.xml -------------------------------------------------------------------------------- /src/it/check-bug-file-multi/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-bug-file-multi/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file-multi/verify.groovy -------------------------------------------------------------------------------- /src/it/check-bug-file/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file/invoker.properties -------------------------------------------------------------------------------- /src/it/check-bug-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file/pom.xml -------------------------------------------------------------------------------- /src/it/check-bug-file/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-bug-file/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-file/verify.groovy -------------------------------------------------------------------------------- /src/it/check-bug-only-test-sources/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-only-test-sources/invoker.properties -------------------------------------------------------------------------------- /src/it/check-bug-only-test-sources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-only-test-sources/pom.xml -------------------------------------------------------------------------------- /src/it/check-bug-only-test-sources/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-only-test-sources/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-bug-only-test-sources/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-bug-only-test-sources/verify.groovy -------------------------------------------------------------------------------- /src/it/check-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/check-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-fail/pom.xml -------------------------------------------------------------------------------- /src/it/check-fail/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-fail/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-fail/verify.groovy -------------------------------------------------------------------------------- /src/it/check-failThreshold/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-failThreshold/invoker.properties -------------------------------------------------------------------------------- /src/it/check-failThreshold/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-failThreshold/pom.xml -------------------------------------------------------------------------------- /src/it/check-failThreshold/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-failThreshold/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-failThreshold/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-failThreshold/verify.groovy -------------------------------------------------------------------------------- /src/it/check-jvmargs/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-jvmargs/invoker.properties -------------------------------------------------------------------------------- /src/it/check-jvmargs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-jvmargs/pom.xml -------------------------------------------------------------------------------- /src/it/check-jvmargs/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-jvmargs/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-jvmargs/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-jvmargs/verify.groovy -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/invoker.properties -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/module1/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/module1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/module1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/module2/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/module2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/module2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/src/main/config/spotbugs-exclude-filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/src/main/config/spotbugs-exclude-filters.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi-filter-dups/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi-filter-dups/verify.groovy -------------------------------------------------------------------------------- /src/it/check-multi/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/invoker.properties -------------------------------------------------------------------------------- /src/it/check-multi/modules/module-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/module-1/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi/modules/module-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/module-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi/modules/module-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/module-2/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi/modules/module-2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/module-2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi/modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi/modules/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/modules/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/pom.xml -------------------------------------------------------------------------------- /src/it/check-multi/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-multi/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-multi/verify.groovy -------------------------------------------------------------------------------- /src/it/check-no-missing-classes/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-no-missing-classes/invoker.properties -------------------------------------------------------------------------------- /src/it/check-no-missing-classes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-no-missing-classes/pom.xml -------------------------------------------------------------------------------- /src/it/check-no-missing-classes/src/main/java/test/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-no-missing-classes/src/main/java/test/App.java -------------------------------------------------------------------------------- /src/it/check-no-missing-classes/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-no-missing-classes/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-no-missing-classes/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-no-missing-classes/verify.groovy -------------------------------------------------------------------------------- /src/it/check-nofail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-nofail/invoker.properties -------------------------------------------------------------------------------- /src/it/check-nofail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-nofail/pom.xml -------------------------------------------------------------------------------- /src/it/check-nofail/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-nofail/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-nofail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-nofail/verify.groovy -------------------------------------------------------------------------------- /src/it/check-pluginList-repo/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-pluginList-repo/invoker.properties -------------------------------------------------------------------------------- /src/it/check-pluginList-repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-pluginList-repo/pom.xml -------------------------------------------------------------------------------- /src/it/check-pluginList-repo/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-pluginList-repo/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-pluginList-repo/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-pluginList-repo/verify.groovy -------------------------------------------------------------------------------- /src/it/check-skip/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-skip/invoker.properties -------------------------------------------------------------------------------- /src/it/check-skip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-skip/pom.xml -------------------------------------------------------------------------------- /src/it/check-skip/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-skip/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-skip/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-skip/verify.groovy -------------------------------------------------------------------------------- /src/it/check-timeout/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-timeout/invoker.properties -------------------------------------------------------------------------------- /src/it/check-timeout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-timeout/pom.xml -------------------------------------------------------------------------------- /src/it/check-timeout/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-timeout/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check-timeout/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check-timeout/verify.groovy -------------------------------------------------------------------------------- /src/it/check/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check/invoker.properties -------------------------------------------------------------------------------- /src/it/check/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check/pom.xml -------------------------------------------------------------------------------- /src/it/check/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check/src/site/site.xml -------------------------------------------------------------------------------- /src/it/check/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/check/verify.groovy -------------------------------------------------------------------------------- /src/it/chooseVisitors/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/chooseVisitors/invoker.properties -------------------------------------------------------------------------------- /src/it/chooseVisitors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/chooseVisitors/pom.xml -------------------------------------------------------------------------------- /src/it/chooseVisitors/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/chooseVisitors/src/site/site.xml -------------------------------------------------------------------------------- /src/it/chooseVisitors/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/chooseVisitors/verify.groovy -------------------------------------------------------------------------------- /src/it/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/common.xml -------------------------------------------------------------------------------- /src/it/effort-default/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-default/invoker.properties -------------------------------------------------------------------------------- /src/it/effort-default/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-default/pom.xml -------------------------------------------------------------------------------- /src/it/effort-default/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-default/src/site/site.xml -------------------------------------------------------------------------------- /src/it/effort-default/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-default/verify.groovy -------------------------------------------------------------------------------- /src/it/effort-max/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-max/invoker.properties -------------------------------------------------------------------------------- /src/it/effort-max/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-max/pom.xml -------------------------------------------------------------------------------- /src/it/effort-max/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-max/src/site/site.xml -------------------------------------------------------------------------------- /src/it/effort-max/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-max/verify.groovy -------------------------------------------------------------------------------- /src/it/effort-min/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-min/invoker.properties -------------------------------------------------------------------------------- /src/it/effort-min/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-min/pom.xml -------------------------------------------------------------------------------- /src/it/effort-min/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-min/src/site/site.xml -------------------------------------------------------------------------------- /src/it/effort-min/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/effort-min/verify.groovy -------------------------------------------------------------------------------- /src/it/empty/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/empty/invoker.properties -------------------------------------------------------------------------------- /src/it/empty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/empty/pom.xml -------------------------------------------------------------------------------- /src/it/empty/src/main/resources/app.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/empty/src/main/resources/app.properties -------------------------------------------------------------------------------- /src/it/empty/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/empty/src/site/site.xml -------------------------------------------------------------------------------- /src/it/empty/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/empty/verify.groovy -------------------------------------------------------------------------------- /src/it/encoding-utf8/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/encoding-utf8/invoker.properties -------------------------------------------------------------------------------- /src/it/encoding-utf8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/encoding-utf8/pom.xml -------------------------------------------------------------------------------- /src/it/encoding-utf8/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/encoding-utf8/src/site/site.xml -------------------------------------------------------------------------------- /src/it/encoding-utf8/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/encoding-utf8/verify.groovy -------------------------------------------------------------------------------- /src/it/exclude-modules/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/invoker.properties -------------------------------------------------------------------------------- /src/it/exclude-modules/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module1/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/module1/src/main/excludeBugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module1/src/main/excludeBugs.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/module1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module2/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/module2/src/main/excludeBugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module2/src/main/excludeBugs.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/module2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/module2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-modules/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-modules/verify.groovy -------------------------------------------------------------------------------- /src/it/exclude-multi-list/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi-list/invoker.properties -------------------------------------------------------------------------------- /src/it/exclude-multi-list/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi-list/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-multi-list/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi-list/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-multi-list/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi-list/verify.groovy -------------------------------------------------------------------------------- /src/it/exclude-multi/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi/invoker.properties -------------------------------------------------------------------------------- /src/it/exclude-multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-multi/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-multi/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-multi/verify.groovy -------------------------------------------------------------------------------- /src/it/exclude-root/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/invoker.properties -------------------------------------------------------------------------------- /src/it/exclude-root/module-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/module-1/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-root/module-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/module-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-root/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-root/spotbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/spotbugs-exclude.xml -------------------------------------------------------------------------------- /src/it/exclude-root/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude-root/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude-root/verify.groovy -------------------------------------------------------------------------------- /src/it/exclude/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude/invoker.properties -------------------------------------------------------------------------------- /src/it/exclude/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude/pom.xml -------------------------------------------------------------------------------- /src/it/exclude/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude/src/site/site.xml -------------------------------------------------------------------------------- /src/it/exclude/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/exclude/verify.groovy -------------------------------------------------------------------------------- /src/it/excludeBugsFile/excludeBugs1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/excludeBugs1.xml -------------------------------------------------------------------------------- /src/it/excludeBugsFile/excludeBugs2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/excludeBugs2.xml -------------------------------------------------------------------------------- /src/it/excludeBugsFile/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/invoker.properties -------------------------------------------------------------------------------- /src/it/excludeBugsFile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/pom.xml -------------------------------------------------------------------------------- /src/it/excludeBugsFile/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/src/site/site.xml -------------------------------------------------------------------------------- /src/it/excludeBugsFile/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeBugsFile/verify.groovy -------------------------------------------------------------------------------- /src/it/excludeFileInOutputLocation/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeFileInOutputLocation/invoker.properties -------------------------------------------------------------------------------- /src/it/excludeFileInOutputLocation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeFileInOutputLocation/pom.xml -------------------------------------------------------------------------------- /src/it/excludeFileInOutputLocation/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeFileInOutputLocation/src/site/site.xml -------------------------------------------------------------------------------- /src/it/excludeFileInOutputLocation/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/excludeFileInOutputLocation/verify.groovy -------------------------------------------------------------------------------- /src/it/experimental/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/experimental/invoker.properties -------------------------------------------------------------------------------- /src/it/experimental/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/experimental/pom.xml -------------------------------------------------------------------------------- /src/it/experimental/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/experimental/src/site/site.xml -------------------------------------------------------------------------------- /src/it/experimental/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/experimental/verify.groovy -------------------------------------------------------------------------------- /src/it/html-report/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/html-report/invoker.properties -------------------------------------------------------------------------------- /src/it/html-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/html-report/pom.xml -------------------------------------------------------------------------------- /src/it/html-report/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/html-report/src/site/site.xml -------------------------------------------------------------------------------- /src/it/html-report/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/html-report/verify.groovy -------------------------------------------------------------------------------- /src/it/include-multi-list/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi-list/invoker.properties -------------------------------------------------------------------------------- /src/it/include-multi-list/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi-list/pom.xml -------------------------------------------------------------------------------- /src/it/include-multi-list/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi-list/src/site/site.xml -------------------------------------------------------------------------------- /src/it/include-multi-list/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi-list/verify.groovy -------------------------------------------------------------------------------- /src/it/include-multi/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi/invoker.properties -------------------------------------------------------------------------------- /src/it/include-multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi/pom.xml -------------------------------------------------------------------------------- /src/it/include-multi/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi/src/site/site.xml -------------------------------------------------------------------------------- /src/it/include-multi/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include-multi/verify.groovy -------------------------------------------------------------------------------- /src/it/include/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include/invoker.properties -------------------------------------------------------------------------------- /src/it/include/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include/pom.xml -------------------------------------------------------------------------------- /src/it/include/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include/src/site/site.xml -------------------------------------------------------------------------------- /src/it/include/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/include/verify.groovy -------------------------------------------------------------------------------- /src/it/maxRank/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/maxRank/invoker.properties -------------------------------------------------------------------------------- /src/it/maxRank/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/maxRank/pom.xml -------------------------------------------------------------------------------- /src/it/maxRank/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/maxRank/src/site/site.xml -------------------------------------------------------------------------------- /src/it/maxRank/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/maxRank/verify.groovy -------------------------------------------------------------------------------- /src/it/multi-build/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/invoker.properties -------------------------------------------------------------------------------- /src/it/multi-build/modules/module-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/module-1/pom.xml -------------------------------------------------------------------------------- /src/it/multi-build/modules/module-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/module-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi-build/modules/module-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/module-2/pom.xml -------------------------------------------------------------------------------- /src/it/multi-build/modules/module-2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/module-2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi-build/modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/pom.xml -------------------------------------------------------------------------------- /src/it/multi-build/modules/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/modules/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/pom.xml -------------------------------------------------------------------------------- /src/it/multi-build/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi-build/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi-build/verify.groovy -------------------------------------------------------------------------------- /src/it/multi/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/invoker.properties -------------------------------------------------------------------------------- /src/it/multi/modules/module-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-1/pom.xml -------------------------------------------------------------------------------- /src/it/multi/modules/module-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi/modules/module-1/src/site/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-1/src/site/xdoc/index.xml -------------------------------------------------------------------------------- /src/it/multi/modules/module-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-2/pom.xml -------------------------------------------------------------------------------- /src/it/multi/modules/module-2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi/modules/module-2/src/site/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/module-2/src/site/xdoc/index.xml -------------------------------------------------------------------------------- /src/it/multi/modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/pom.xml -------------------------------------------------------------------------------- /src/it/multi/modules/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/modules/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/pom.xml -------------------------------------------------------------------------------- /src/it/multi/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/src/site/site.xml -------------------------------------------------------------------------------- /src/it/multi/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/multi/verify.groovy -------------------------------------------------------------------------------- /src/it/nested/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/nested/invoker.properties -------------------------------------------------------------------------------- /src/it/nested/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/nested/pom.xml -------------------------------------------------------------------------------- /src/it/nested/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/nested/src/site/site.xml -------------------------------------------------------------------------------- /src/it/nested/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/nested/verify.groovy -------------------------------------------------------------------------------- /src/it/no-src/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-src/invoker.properties -------------------------------------------------------------------------------- /src/it/no-src/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-src/pom.xml -------------------------------------------------------------------------------- /src/it/no-src/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-src/src/site/site.xml -------------------------------------------------------------------------------- /src/it/no-src/src/test/java/EmptyJUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-src/src/test/java/EmptyJUnitTest.java -------------------------------------------------------------------------------- /src/it/no-src/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-src/verify.groovy -------------------------------------------------------------------------------- /src/it/no-testsrc/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-testsrc/invoker.properties -------------------------------------------------------------------------------- /src/it/no-testsrc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-testsrc/pom.xml -------------------------------------------------------------------------------- /src/it/no-testsrc/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-testsrc/src/site/site.xml -------------------------------------------------------------------------------- /src/it/no-testsrc/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/no-testsrc/verify.groovy -------------------------------------------------------------------------------- /src/it/omitVisitors/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/omitVisitors/invoker.properties -------------------------------------------------------------------------------- /src/it/omitVisitors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/omitVisitors/pom.xml -------------------------------------------------------------------------------- /src/it/omitVisitors/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/omitVisitors/src/site/site.xml -------------------------------------------------------------------------------- /src/it/omitVisitors/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/omitVisitors/verify.groovy -------------------------------------------------------------------------------- /src/it/onlyAnalyze/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyze/invoker.properties -------------------------------------------------------------------------------- /src/it/onlyAnalyze/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyze/pom.xml -------------------------------------------------------------------------------- /src/it/onlyAnalyze/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyze/src/site/site.xml -------------------------------------------------------------------------------- /src/it/onlyAnalyze/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyze/verify.groovy -------------------------------------------------------------------------------- /src/it/onlyAnalyzeFileSource/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyzeFileSource/invoker.properties -------------------------------------------------------------------------------- /src/it/onlyAnalyzeFileSource/only-analyze.txt: -------------------------------------------------------------------------------- 1 | BC_Unconfirmed_Cast 2 | -------------------------------------------------------------------------------- /src/it/onlyAnalyzeFileSource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyzeFileSource/pom.xml -------------------------------------------------------------------------------- /src/it/onlyAnalyzeFileSource/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyzeFileSource/src/site/site.xml -------------------------------------------------------------------------------- /src/it/onlyAnalyzeFileSource/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/onlyAnalyzeFileSource/verify.groovy -------------------------------------------------------------------------------- /src/it/pluginList-repo/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList-repo/invoker.properties -------------------------------------------------------------------------------- /src/it/pluginList-repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList-repo/pom.xml -------------------------------------------------------------------------------- /src/it/pluginList-repo/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList-repo/src/site/site.xml -------------------------------------------------------------------------------- /src/it/pluginList-repo/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList-repo/verify.groovy -------------------------------------------------------------------------------- /src/it/pluginList/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList/invoker.properties -------------------------------------------------------------------------------- /src/it/pluginList/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList/pom.xml -------------------------------------------------------------------------------- /src/it/pluginList/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList/src/site/site.xml -------------------------------------------------------------------------------- /src/it/pluginList/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/pluginList/verify.groovy -------------------------------------------------------------------------------- /src/it/relaxed/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/relaxed/invoker.properties -------------------------------------------------------------------------------- /src/it/relaxed/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/relaxed/pom.xml -------------------------------------------------------------------------------- /src/it/relaxed/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/relaxed/src/site/site.xml -------------------------------------------------------------------------------- /src/it/relaxed/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/relaxed/verify.groovy -------------------------------------------------------------------------------- /src/it/sarif-1/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-1/invoker.properties -------------------------------------------------------------------------------- /src/it/sarif-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-1/pom.xml -------------------------------------------------------------------------------- /src/it/sarif-1/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-1/src/site/site.xml -------------------------------------------------------------------------------- /src/it/sarif-1/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-1/verify.groovy -------------------------------------------------------------------------------- /src/it/sarif-2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-2/invoker.properties -------------------------------------------------------------------------------- /src/it/sarif-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-2/pom.xml -------------------------------------------------------------------------------- /src/it/sarif-2/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-2/src/site/site.xml -------------------------------------------------------------------------------- /src/it/sarif-2/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/sarif-2/verify.groovy -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/site-brazil/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-brazil/invoker.properties -------------------------------------------------------------------------------- /src/it/site-brazil/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-brazil/pom.xml -------------------------------------------------------------------------------- /src/it/site-brazil/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-brazil/src/site/site.xml -------------------------------------------------------------------------------- /src/it/site-brazil/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-brazil/verify.groovy -------------------------------------------------------------------------------- /src/it/site-default/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-default/invoker.properties -------------------------------------------------------------------------------- /src/it/site-default/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-default/pom.xml -------------------------------------------------------------------------------- /src/it/site-default/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-default/src/site/site.xml -------------------------------------------------------------------------------- /src/it/site-default/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-default/verify.groovy -------------------------------------------------------------------------------- /src/it/site-french/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-french/invoker.properties -------------------------------------------------------------------------------- /src/it/site-french/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-french/pom.xml -------------------------------------------------------------------------------- /src/it/site-french/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-french/src/site/site.xml -------------------------------------------------------------------------------- /src/it/site-french/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-french/verify.groovy -------------------------------------------------------------------------------- /src/it/site-spanish/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-spanish/invoker.properties -------------------------------------------------------------------------------- /src/it/site-spanish/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-spanish/pom.xml -------------------------------------------------------------------------------- /src/it/site-spanish/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-spanish/src/site/site.xml -------------------------------------------------------------------------------- /src/it/site-spanish/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/site-spanish/verify.groovy -------------------------------------------------------------------------------- /src/it/skip/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skip/invoker.properties -------------------------------------------------------------------------------- /src/it/skip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skip/pom.xml -------------------------------------------------------------------------------- /src/it/skip/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skip/src/site/site.xml -------------------------------------------------------------------------------- /src/it/skip/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skip/verify.groovy -------------------------------------------------------------------------------- /src/it/skipEmpty/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skipEmpty/invoker.properties -------------------------------------------------------------------------------- /src/it/skipEmpty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skipEmpty/pom.xml -------------------------------------------------------------------------------- /src/it/skipEmpty/src/main/java/test/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skipEmpty/src/main/java/test/App.java -------------------------------------------------------------------------------- /src/it/skipEmpty/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skipEmpty/src/site/site.xml -------------------------------------------------------------------------------- /src/it/skipEmpty/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/skipEmpty/verify.groovy -------------------------------------------------------------------------------- /src/it/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/src/site/site.xml -------------------------------------------------------------------------------- /src/it/systemPropertyVariables/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/systemPropertyVariables/invoker.properties -------------------------------------------------------------------------------- /src/it/systemPropertyVariables/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/systemPropertyVariables/pom.xml -------------------------------------------------------------------------------- /src/it/systemPropertyVariables/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/systemPropertyVariables/src/site/site.xml -------------------------------------------------------------------------------- /src/it/systemPropertyVariables/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/systemPropertyVariables/verify.groovy -------------------------------------------------------------------------------- /src/it/threaded/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threaded/invoker.properties -------------------------------------------------------------------------------- /src/it/threaded/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threaded/pom.xml -------------------------------------------------------------------------------- /src/it/threaded/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threaded/src/site/site.xml -------------------------------------------------------------------------------- /src/it/threaded/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threaded/verify.groovy -------------------------------------------------------------------------------- /src/it/threshold-experimental/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-experimental/invoker.properties -------------------------------------------------------------------------------- /src/it/threshold-experimental/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-experimental/pom.xml -------------------------------------------------------------------------------- /src/it/threshold-experimental/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-experimental/src/site/site.xml -------------------------------------------------------------------------------- /src/it/threshold-experimental/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-experimental/verify.groovy -------------------------------------------------------------------------------- /src/it/threshold-high/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-high/invoker.properties -------------------------------------------------------------------------------- /src/it/threshold-high/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-high/pom.xml -------------------------------------------------------------------------------- /src/it/threshold-high/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-high/src/site/site.xml -------------------------------------------------------------------------------- /src/it/threshold-high/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-high/verify.groovy -------------------------------------------------------------------------------- /src/it/threshold-low/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-low/invoker.properties -------------------------------------------------------------------------------- /src/it/threshold-low/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-low/pom.xml -------------------------------------------------------------------------------- /src/it/threshold-low/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-low/src/site/site.xml -------------------------------------------------------------------------------- /src/it/threshold-low/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/threshold-low/verify.groovy -------------------------------------------------------------------------------- /src/it/trace/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/trace/invoker.properties -------------------------------------------------------------------------------- /src/it/trace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/trace/pom.xml -------------------------------------------------------------------------------- /src/it/trace/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/trace/src/site/site.xml -------------------------------------------------------------------------------- /src/it/trace/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/trace/verify.groovy -------------------------------------------------------------------------------- /src/it/userPrefs-override/edu.umd.cs.findbugs.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs-override/edu.umd.cs.findbugs.core.prefs -------------------------------------------------------------------------------- /src/it/userPrefs-override/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs-override/invoker.properties -------------------------------------------------------------------------------- /src/it/userPrefs-override/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs-override/pom.xml -------------------------------------------------------------------------------- /src/it/userPrefs-override/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs-override/src/site/site.xml -------------------------------------------------------------------------------- /src/it/userPrefs-override/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs-override/verify.groovy -------------------------------------------------------------------------------- /src/it/userPrefs/edu.umd.cs.findbugs.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs/edu.umd.cs.findbugs.core.prefs -------------------------------------------------------------------------------- /src/it/userPrefs/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs/invoker.properties -------------------------------------------------------------------------------- /src/it/userPrefs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs/pom.xml -------------------------------------------------------------------------------- /src/it/userPrefs/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs/src/site/site.xml -------------------------------------------------------------------------------- /src/it/userPrefs/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/userPrefs/verify.groovy -------------------------------------------------------------------------------- /src/it/verify-clean/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-clean/invoker.properties -------------------------------------------------------------------------------- /src/it/verify-clean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-clean/pom.xml -------------------------------------------------------------------------------- /src/it/verify-clean/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-clean/src/site/site.xml -------------------------------------------------------------------------------- /src/it/verify-clean/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-clean/verify.groovy -------------------------------------------------------------------------------- /src/it/verify-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/verify-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-fail/pom.xml -------------------------------------------------------------------------------- /src/it/verify-fail/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-fail/src/site/site.xml -------------------------------------------------------------------------------- /src/it/verify-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify-fail/verify.groovy -------------------------------------------------------------------------------- /src/it/verify/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify/invoker.properties -------------------------------------------------------------------------------- /src/it/verify/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify/pom.xml -------------------------------------------------------------------------------- /src/it/verify/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify/src/site/site.xml -------------------------------------------------------------------------------- /src/it/verify/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/it/verify/verify.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojo.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/CheckMojo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/CheckMojo.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/PluginArtifact.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/PluginArtifact.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/ResourceHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/ResourceHelper.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SourceFileIndexer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SourceFileIndexer.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsGui.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsGui.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsPluginsTrait.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsPluginsTrait.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/SpotbugsReportGenerator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/SpotbugsReportGenerator.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/VerifyMojo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/VerifyMojo.groovy -------------------------------------------------------------------------------- /src/main/groovy/org/codehaus/mojo/spotbugs/XDocsReporter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/groovy/org/codehaus/mojo/spotbugs/XDocsReporter.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /src/main/resources/spotbugs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs.properties -------------------------------------------------------------------------------- /src/main/resources/spotbugs_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs_en.properties -------------------------------------------------------------------------------- /src/main/resources/spotbugs_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs_es.properties -------------------------------------------------------------------------------- /src/main/resources/spotbugs_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs_fr.properties -------------------------------------------------------------------------------- /src/main/resources/spotbugs_no_NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs_no_NO.properties -------------------------------------------------------------------------------- /src/main/resources/spotbugs_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/resources/spotbugs_pt_BR.properties -------------------------------------------------------------------------------- /src/main/tools/spotbugs-exclude-filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/main/tools/spotbugs-exclude-filters.xml -------------------------------------------------------------------------------- /src/site/apt/examples/multi-module-config.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/apt/examples/multi-module-config.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/violationChecking.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/apt/examples/violationChecking.apt.vm -------------------------------------------------------------------------------- /src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/site/apt/usage.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/apt/usage.apt.vm -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/resources/examples/css/apache-maven-fluido-2.1.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/css/apache-maven-fluido-2.1.0.min.css -------------------------------------------------------------------------------- /src/site/resources/examples/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/css/print.css -------------------------------------------------------------------------------- /src/site/resources/examples/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/css/site.css -------------------------------------------------------------------------------- /src/site/resources/examples/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/site/resources/examples/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/site/resources/examples/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/site/resources/examples/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/site/resources/examples/images/accessories-text-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/accessories-text-editor.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/add.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/apache-maven-project-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/apache-maven-project-2.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/fix.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/icon_error_sml.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/icon_help_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/icon_help_sml.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/icon_info_sml.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/icon_success_sml.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/logos/build-by-maven-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/logos/build-by-maven-black.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/logos/build-by-maven-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/logos/build-by-maven-white.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/logos/maven-feather.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/profiles/pre-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/profiles/pre-release.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/profiles/retired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/profiles/retired.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/profiles/sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/profiles/sandbox.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/remove.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/rss.png -------------------------------------------------------------------------------- /src/site/resources/examples/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/update.gif -------------------------------------------------------------------------------- /src/site/resources/examples/images/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/images/window-new.png -------------------------------------------------------------------------------- /src/site/resources/examples/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/site/resources/examples/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/site/resources/examples/js/apache-maven-fluido-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/js/apache-maven-fluido-2.1.0.min.js -------------------------------------------------------------------------------- /src/site/resources/examples/project-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/project-reports.html -------------------------------------------------------------------------------- /src/site/resources/examples/spotbugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/spotbugs.html -------------------------------------------------------------------------------- /src/site/resources/examples/spotbugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/spotbugs.xml -------------------------------------------------------------------------------- /src/site/resources/examples/spotbugsXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/spotbugsXml.xml -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/allclasses-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/index.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/App.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/App.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/FooTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/FooTest.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/package-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/org/codehaus/mojo/spotbugsmavenplugin/it/package-summary.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/overview-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/overview-summary.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref-test/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref-test/stylesheet.css -------------------------------------------------------------------------------- /src/site/resources/examples/xref/A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/A.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AbstractMissingHashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AbstractMissingHashCode.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AccidentalNonConstructorInInnerClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AccidentalNonConstructorInInnerClass.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AnnotationTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AnnotationTest.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AppendingToAnObjectOutputStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AppendingToAnObjectOutputStream.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/ArgumentAssertions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/ArgumentAssertions.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/ArrayToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/ArrayToString.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AssertionsWithSideEffects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AssertionsWithSideEffects.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AssignedOnlyInCtor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AssignedOnlyInCtor.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/AssumeUnsignedBytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/AssumeUnsignedBytes.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UseInitCause.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UseInitCause.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UseOfNonHashableClassInHashDataStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UseOfNonHashableClassInHashDataStructure.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UselessAssignments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UselessAssignments.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UselessControlFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UselessControlFlow.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UselessCurrentThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UselessCurrentThread.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UselessFinalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UselessFinalize.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UselessSCMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UselessSCMethods.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UserAss3rtion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UserAss3rtion.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/UserMistakes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/UserMistakes.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/allclasses-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/annotations/DetectorUnderTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/annotations/DetectorUnderTest.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/annotations/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/annotations/package-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/annotations/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/annotations/package-summary.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/index.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/overview-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/overview-summary.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/package-frame.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/package-summary.html -------------------------------------------------------------------------------- /src/site/resources/examples/xref/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/resources/examples/xref/stylesheet.css -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/stubfixer/java/com/github/spotbugs/StubOverrideFixer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/stubfixer/java/com/github/spotbugs/StubOverrideFixer.java -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/CheckMojoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/CheckMojoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/PluginArtifactTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/PluginArtifactTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/ResourceHelperTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/ResourceHelperTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SourceFileIndexerTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SourceFileIndexerTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsGuiTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsGuiTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsInfoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsInfoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsPluginsTraitTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SpotBugsPluginsTraitTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/SpotbugsReportGeneratorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/SpotbugsReportGeneratorTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/VerifyMojoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/VerifyMojoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/org/codehaus/mojo/spotbugs/XDocsReporterTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotbugs/spotbugs-maven-plugin/HEAD/src/test/groovy/org/codehaus/mojo/spotbugs/XDocsReporterTest.groovy --------------------------------------------------------------------------------