Remove JSR305 dependencies 99/82799/7
authorRobert Varga <robert.varga@pantheon.tech>
Sat, 29 Jun 2019 10:01:58 +0000 (12:01 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 30 Jul 2019 22:43:58 +0000 (00:43 +0200)
JSR305 is not used anywhere, remove it from dependencies.

Change-Id: Ia8129823dc2ac78d967ca23a2502e799d5148d31
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
alivenessmonitor/alivenessmonitor-impl/pom.xml
idmanager/idmanager-impl/pom.xml
interfacemanager/interfacemanager-impl/pom.xml
itm/itm-impl/pom.xml
itm/itm-impl/src/main/java/org/opendaylight/genius/itm/impl/ItmUtils.java
lockmanager/lockmanager-impl/pom.xml

index 827cec3b8df570b66b5e58e3809b683dc51bccfb..d71bee33c2cb000399fb40844e24bd233b485976 100644 (file)
@@ -25,11 +25,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   <name>ODL :: genius :: ${project.artifactId}</name>
 
   <dependencies>
-    <dependency>
-      <groupId>com.google.code.findbugs</groupId>
-      <artifactId>jsr305</artifactId>
-      <optional>true</optional>
-    </dependency>
     <dependency>
       <groupId>org.opendaylight.genius</groupId>
       <artifactId>alivenessmonitor-api</artifactId>
index 06bb24d9c5e2c223884207d84c7652a12a27e9d3..40714b2daf664febd9457844678ba855953ac489 100644 (file)
@@ -61,11 +61,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <artifactId>blueprint-maven-plugin-annotation</artifactId>
       <optional>true</optional>
     </dependency>
-    <dependency>
-      <groupId>com.google.code.findbugs</groupId>
-      <artifactId>jsr305</artifactId>
-      <optional>true</optional>
-    </dependency>
 
     <!-- Testing Dependencies -->
     <dependency>
index fa8b613bec078fdc99bad61ad7af1530e4d53999..1a8d609064ca35798352db36563eea2feb1ab585 100644 (file)
@@ -108,11 +108,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <artifactId>blueprint-maven-plugin-annotation</artifactId>
       <optional>true</optional>
     </dependency>
-    <dependency>
-      <groupId>com.google.code.findbugs</groupId>
-      <artifactId>jsr305</artifactId>
-      <optional>true</optional>
-    </dependency>
     <!-- for infrautils metrics APIs -->
     <dependency>
       <groupId>org.opendaylight.infrautils</groupId>
index f1de5ab11b6ccc17c6efd9ef00b11cb8b85ad3e6..74255056b543b102a88550f5da276e6685131a84 100644 (file)
@@ -92,11 +92,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <groupId>org.opendaylight.genius</groupId>
       <artifactId>idmanager-api</artifactId>
     </dependency>
-    <dependency>
-      <groupId>com.google.code.findbugs</groupId>
-      <artifactId>jsr305</artifactId>
-      <optional>true</optional>
-    </dependency>
     <!-- Testing Dependencies -->
     <dependency>
       <groupId>org.opendaylight.mdsal</groupId>
index 9d96881ce5475fb07fc1b5caee4023de20b740a5..0ec7cfd74953c2b9658410fcaac5c5146c75cce7 100644 (file)
@@ -28,7 +28,6 @@ import java.util.List;
 import java.util.Objects;
 import java.util.UUID;
 import java.util.concurrent.ExecutionException;
-import javax.annotation.Nonnull;
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
 import org.opendaylight.controller.md.sal.binding.api.ReadOnlyTransaction;
@@ -504,9 +503,9 @@ public final class ItmUtils {
         return collection == null || collection.isEmpty();
     }
 
-    @Nonnull
-    public static HwVtep createHwVtepObject(String topoId, String nodeId, IpAddress ipAddress,
-                                            Class<? extends TunnelTypeBase> tunneltype, TransportZone transportZone) {
+    public static @NonNull HwVtep createHwVtepObject(String topoId, String nodeId, IpAddress ipAddress,
+                                                     Class<? extends TunnelTypeBase> tunneltype,
+                                                     TransportZone transportZone) {
         HwVtep hwVtep = new HwVtep();
         hwVtep.setHwIp(ipAddress);
         hwVtep.setNodeId(nodeId);
index 55b2c78c0405a038b0a0c3a413e458655db22e88..8526889513f3b8de0c47922c746406b031e5f38c 100644 (file)
@@ -52,11 +52,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <artifactId>blueprint-maven-plugin-annotation</artifactId>
       <optional>true</optional>
     </dependency>
-    <dependency>
-      <groupId>com.google.code.findbugs</groupId>
-      <artifactId>jsr305</artifactId>
-      <optional>true</optional>
-    </dependency>
     <!-- Testing Dependencies -->
     <dependency>
       <groupId>org.opendaylight.genius</groupId>