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 2022/06/08 13:32:23 UTC

[uima-uimaj] branch no-jira/update-autoformatting updated: [No Jira] Temporarily update spotbugs to be compatible with Java 17 until we go to Parent POM 16

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

rec pushed a commit to branch no-jira/update-autoformatting
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git


The following commit(s) were added to refs/heads/no-jira/update-autoformatting by this push:
     new 192f3ca4b [No Jira] Temporarily update spotbugs to be compatible with Java 17 until we go to Parent POM 16
192f3ca4b is described below

commit 192f3ca4bf98e89c577150edca0d3a23fadc9a88
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Wed Jun 8 15:32:17 2022 +0200

    [No Jira] Temporarily update spotbugs to be compatible with Java 17 until we go to Parent POM 16
---
 uimaj-parent/pom.xml | 31 +++++++++----------------------
 1 file changed, 9 insertions(+), 22 deletions(-)

diff --git a/uimaj-parent/pom.xml b/uimaj-parent/pom.xml
index 0ae4f1eed..7e2b6de76 100644
--- a/uimaj-parent/pom.xml
+++ b/uimaj-parent/pom.xml
@@ -25,7 +25,9 @@
      project-wide parent pom.
  -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -93,12 +95,6 @@
       </snapshots>
     </repository>
     -->
-
-    <repository>
-      <id>${eclipseP2RepoId}</id>
-      <url>${eclipseP2RepoUrl}</url>
-      <layout>p2</layout>
-    </repository>
   </repositories>
 
   <pluginRepositories>
@@ -246,6 +242,12 @@
     </pluginManagement>
 
     <plugins>
+      <plugin>
+        <groupId>com.github.spotbugs</groupId>
+        <artifactId>spotbugs-maven-plugin</artifactId>
+        <version>4.7.0.0</version>
+      </plugin>
+
       <plugin>
         <!-- See: https://issues.apache.org/jira/browse/UIMA-6349 -->
         <groupId>com.github.siom79.japicmp</groupId>
@@ -395,20 +397,5 @@
         </pluginManagement>
       </build>
     </profile>
-
-    <profile>
-      <id>spotbugs</id>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>com.github.spotbugs</groupId>
-              <artifactId>spotbugs-maven-plugin</artifactId>
-              <version>4.7.0.0</version>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
   </profiles>
 </project>