Reorder dependencies 16/102916/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 28 Oct 2022 09:20:41 +0000 (11:20 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 28 Oct 2022 09:20:41 +0000 (11:20 +0200)
Make sure org.json is first, removing the need for exclusions.

Change-Id: I6243ba7663d62c76f34e483dba406c7ed45ddb60
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-nb/pom.xml

index 77cd5aa3c2e2a04548f186e875f9407b3fc1aefe..78e6d4accf419de4d8bd5f8c83712e1c0e298182 100644 (file)
       <groupId>org.opendaylight.yangtools</groupId>
       <artifactId>yang-test-util</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.json</groupId>
+      <artifactId>json</artifactId>
+      <version>20220924</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.skyscreamer</groupId>
       <artifactId>jsonassert</artifactId>
       <version>1.5.1</version>
       <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>com.vaadin.external.google</groupId>
-          <artifactId>android-json</artifactId>
-        </exclusion>
-      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.opendaylight.aaa.web</groupId>
       <version>2.36.0</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.json</groupId>
-      <artifactId>json</artifactId>
-      <version>20220924</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 
   <build>