Skip to content

Commit 24f5946

Browse files
committed
Fix build for the release of 1.4.2
- maven-compiler-plugin 2.5.1 threat warning as error. An older version is set to allow the compilation of deprecated api in the test code. - Remove of unused imports.
1 parent 635d760 commit 24f5946

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

findbugs-test-util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.h3xstream.findsecbugs</groupId>
77
<artifactId>findsecbugs-root-pom</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
8+
<version>1.4.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

plugin-deps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.h3xstream.findsecbugs</groupId>
77
<artifactId>findsecbugs-root-pom</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
8+
<version>1.4.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.h3xstream.findsecbugs</groupId>
77
<artifactId>findsecbugs-root-pom</artifactId>
8-
<version>1.4.2-SNAPSHOT</version>
8+
<version>1.4.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

plugin/src/test/java/com/h3xstream/findsecbugs/injection/custom/CustomInjectionDetectorTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,11 @@
1717
*/
1818
package com.h3xstream.findsecbugs.injection.custom;
1919

20-
import ch.qos.logback.classic.Level;
2120
import com.h3xstream.findbugs.test.BaseDetectorTest;
2221
import com.h3xstream.findbugs.test.EasyBugReporter;
23-
import com.sun.media.jfxmedia.logging.Logger;
2422
import org.testng.annotations.Test;
2523
import org.testng.annotations.BeforeTest;
2624

27-
import java.util.Arrays;
28-
2925
import static org.mockito.Mockito.spy;
3026
import static org.mockito.Mockito.verify;
3127

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>findsecbugs-root-pom</artifactId>
88

99
<packaging>pom</packaging>
10-
<version>1.4.2-SNAPSHOT</version>
10+
<version>1.4.2</version>
1111

1212
<name>Find Security Bugs root</name>
1313

@@ -27,7 +27,7 @@
2727
<!-- Force the use of Java 6 compiler -->
2828
<plugin>
2929
<artifactId>maven-compiler-plugin</artifactId>
30-
<version>2.5.1</version>
30+
<version>2.3.2</version>
3131
<configuration>
3232
<source>1.6</source>
3333
<target>1.6</target>

website/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.h3xstream.findsecbugs</groupId>
88
<artifactId>findsecbugs-root-pom</artifactId>
9-
<version>1.4.2-SNAPSHOT</version>
9+
<version>1.4.2</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)