From cf88c2c28957713060fd6f45af0ee1875ebedb18 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Tue, 2 Jun 2020 11:56:38 -0400 Subject: [PATCH] temp testing work --- src/it/spotbugs-issue212/pom.xml | 78 +++++++++++++++++++ src/it/spotbugs-issue212/test-module/pom.xml | 18 +++++ .../com/spotbugs/issue212/DummyClass.java | 4 + 3 files changed, 100 insertions(+) create mode 100644 src/it/spotbugs-issue212/pom.xml create mode 100644 src/it/spotbugs-issue212/test-module/pom.xml create mode 100644 src/it/spotbugs-issue212/test-module/src/main/java/com/spotbugs/issue212/DummyClass.java diff --git a/src/it/spotbugs-issue212/pom.xml b/src/it/spotbugs-issue212/pom.xml new file mode 100644 index 00000000..d35f23d4 --- /dev/null +++ b/src/it/spotbugs-issue212/pom.xml @@ -0,0 +1,78 @@ + + + 4.0.0 + + com.spotbugs.issue212 + test-parent + 1.0.0 + + pom + + Repro for Spotbugs Maven Plugin Issue 212 + + + UTF-8 + UTF-8 + + 1.8 + 1.8 + + + + + 4.0.0 + 4.0.0 + 4.0.0 + 1.0 + 1.5.0 + 3.0.2 + + 3.8.1 + + + + test-module + + + + + + maven-compiler-plugin + ${version.maven-compiler-plugin} + + + + com.github.spotbugs + spotbugs-maven-plugin + ${version.spotbugs-maven-plugin} + + + com.github.spotbugs + spotbugs + ${version.spotbugs} + + + + + + jp.skypencil.findbugs.slf4j + bug-pattern + ${version.spotbugs-slf4j-bug-pattern} + + + + + + analyze-compile + compile + + check + + + + + + + + diff --git a/src/it/spotbugs-issue212/test-module/pom.xml b/src/it/spotbugs-issue212/test-module/pom.xml new file mode 100644 index 00000000..b0ca64b3 --- /dev/null +++ b/src/it/spotbugs-issue212/test-module/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + + com.spotbugs.issue212 + test-parent + 1.0.0 + + + test-module + + jar + + A Test Module + + diff --git a/src/it/spotbugs-issue212/test-module/src/main/java/com/spotbugs/issue212/DummyClass.java b/src/it/spotbugs-issue212/test-module/src/main/java/com/spotbugs/issue212/DummyClass.java new file mode 100644 index 00000000..99a15c81 --- /dev/null +++ b/src/it/spotbugs-issue212/test-module/src/main/java/com/spotbugs/issue212/DummyClass.java @@ -0,0 +1,4 @@ +package com.spotbugs.issue212; + +public class DummyClass { +}