You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2020/01/29 09:02:43 UTC

[uima-uimafit] branch feature/UIMA-6182-Update-findbugs-configuration created (now b3c76c1)

This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch feature/UIMA-6182-Update-findbugs-configuration
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git.


      at b3c76c1  [UIMA-6182] Update findbugs configuration

This branch includes the following new commits:

     new b3c76c1  [UIMA-6182] Update findbugs configuration

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[uima-uimafit] 01/01: [UIMA-6182] Update findbugs configuration

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch feature/UIMA-6182-Update-findbugs-configuration
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git

commit b3c76c1b1adb67ad9a9bfd44ffb80ca9ce6edc27
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Wed Jan 29 10:02:34 2020 +0100

    [UIMA-6182] Update findbugs configuration
    
    - Switch from Findbugs to Spotbugs since the former is no longer maintained
---
 uimafit-parent/pom.xml | 36 ++++++++++++++++--------------------
 1 file changed, 16 insertions(+), 20 deletions(-)

diff --git a/uimafit-parent/pom.xml b/uimafit-parent/pom.xml
index a4bb141..9802a26 100644
--- a/uimafit-parent/pom.xml
+++ b/uimafit-parent/pom.xml
@@ -307,29 +307,25 @@
   </build>
   <profiles>
     <profile>
-      <id>findbugs</id>
+      <id>spotbugs</id>
       <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>findbugs-maven-plugin</artifactId>
-              <version>3.0.3</version>
-              <executions>
-                <execution>
-                  <phase>package</phase>
-                  <goals>
-                    <goal>findbugs</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
-          </plugins>
-        </pluginManagement>
         <plugins>
           <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>findbugs-maven-plugin</artifactId>
+            <groupId>com.github.spotbugs</groupId>
+            <artifactId>spotbugs-maven-plugin</artifactId>
+            <version>3.1.12.2</version>
+            <executions>
+              <execution>
+                <id>default</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+                <configuration>
+                  <failOnError>false</failOnError>
+                </configuration>
+              </execution>
+            </executions>
           </plugin>
         </plugins>
       </build>