Clean up mdsal-eos-binding-adapter dependencies 83/109483/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 29 Dec 2023 11:16:38 +0000 (12:16 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 29 Dec 2023 11:16:38 +0000 (12:16 +0100)
We use JDT annotations and not SpotBugs annotations, adjust dependencies
accordingly.

Change-Id: I6c0a5824eba297f99a244aedd52c67077061d0d9
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
entityownership/mdsal-eos-binding-adapter/pom.xml
entityownership/mdsal-eos-binding-adapter/src/main/java/module-info.java

index 740106d9636b99cb20c48d0dc0957f39553ab7a7..201819de1f03569225fbdb90c1f92d559557c85e 100644 (file)
     <packaging>bundle</packaging>
 
     <dependencies>
-        <dependency>
-            <groupId>com.github.spotbugs</groupId>
-            <artifactId>spotbugs-annotations</artifactId>
-            <optional>true</optional>
-        </dependency>
         <dependency>
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.eclipse.jdt</groupId>
+            <artifactId>org.eclipse.jdt.annotation</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.opendaylight.mdsal</groupId>
             <artifactId>mdsal-binding-dom-adapter</artifactId>
index e8a44215894fce80d5ba55a8b24f5cb0e17c7017..31e1edf8fc6b3f574c2966d1ee4eee8c2214a16c 100644 (file)
@@ -15,7 +15,6 @@ module org.opendaylight.mdsal.eos.binding.dom.adapter {
     requires org.slf4j;
 
     // Annotations
-    requires static com.github.spotbugs.annotations;
     requires static javax.inject;
     requires static org.osgi.service.component.annotations;
 }