You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by rk...@apache.org on 2017/06/16 19:45:04 UTC

oozie git commit: OOZIE-2946 Include find-sec-bugs plugin (Jan Hentschel via rkanter)

Repository: oozie
Updated Branches:
  refs/heads/master d22717a07 -> ef2389d9e


OOZIE-2946 Include find-sec-bugs plugin (Jan Hentschel via rkanter)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/ef2389d9
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/ef2389d9
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/ef2389d9

Branch: refs/heads/master
Commit: ef2389d9e6f008825898cffa24202105d6ee0177
Parents: d22717a
Author: Robert Kanter <rk...@apache.org>
Authored: Fri Jun 16 12:43:12 2017 -0700
Committer: Robert Kanter <rk...@apache.org>
Committed: Fri Jun 16 12:45:00 2017 -0700

----------------------------------------------------------------------
 pom.xml         | 15 ++++++++++++---
 release-log.txt |  1 +
 2 files changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/ef2389d9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0e06da4..14fa5e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1717,7 +1717,7 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>findbugs-maven-plugin</artifactId>
-                    <version>3.0.0</version>
+                    <version>3.0.1</version>
                 </plugin>
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
@@ -1747,7 +1747,6 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>findbugs-maven-plugin</artifactId>
-                <version>3.0.1</version>
                 <configuration>
                     <excludeSubProjects>false</excludeSubProjects>
                     <xmlOutput>true</xmlOutput>
@@ -1759,6 +1758,13 @@
                     <xmlOutput>true</xmlOutput>
                     <findbugsXmlOutputDirectory>${project.build.directory}/findbugs</findbugsXmlOutputDirectory>
                     <excludeFilterFile>findbugs-filter.xml</excludeFilterFile>
+                    <plugins>
+                        <plugin>
+                            <groupId>com.h3xstream.findsecbugs</groupId>
+                            <artifactId>findsecbugs-plugin</artifactId>
+                            <version>1.6.0</version>
+                        </plugin>
+                    </plugins>
                 </configuration>
                 <dependencies>
                     <dependency>
@@ -1788,6 +1794,9 @@
                             <dir>${project.build.directory}/findbugs</dir>
                             <outputDir>${project.build.directory}/findbugs</outputDir>
                             <stylesheet>fancy-hist.xsl</stylesheet>
+                            <excludes>
+                                <exclude>**/findsecbugs*.jar</exclude>
+                            </excludes>
                             <fileMappers>
                                 <fileMapper
                                        implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
@@ -1809,7 +1818,7 @@
                     <dependency>
                         <groupId>com.google.code.findbugs</groupId>
                         <artifactId>findbugs</artifactId>
-                        <version>2.0.3</version>
+                        <version>3.0.1</version>
                     </dependency>
                 </dependencies>
             </plugin>

http://git-wip-us.apache.org/repos/asf/oozie/blob/ef2389d9/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index 7b65945..c7c09bd 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.0.0 release (trunk - unreleased)
 
+OOZIE-2946 Include find-sec-bugs plugin (Jan Hentschel via rkanter)
 OOZIE-2950 TestOozieCLI.testSlaEvents is not testing SLAServlet. (gezapeti)
 OOZIE-2924 ./bin/mkdistro.sh reports a number instances of no @throws for Exception (Artem Ervits via gezapeti)
 OOZIE-2928 Unit Tests using LocalOozie fail randomly (Denes Bodo via pbacsko)