Fix broken models build due to json upgrade 10/109710/2
authorJim Hahn <jrh3@att.com>
Tue, 30 Jun 2020 23:08:26 +0000 (19:08 -0400)
committerJim Hahn <jrh3@att.com>
Wed, 1 Jul 2020 14:02:16 +0000 (10:02 -0400)
The json dependency was moved to policy-parent and the "version"
property removed which broke the policy-models build.  Removed
the "version" from the pom.
Also removed the jetty-security "version" from the pom, as it is
no longer needed either.
Also added asm dependency, because upgrade of openpojo version
caused breakage in one of the TestPojos.

Issue-ID: POLICY-2387
Change-Id: I3c2315b3cbea05de76b6dfcc289f9323af77745b
Signed-off-by: Jim Hahn <jrh3@att.com>
models-tosca/pom.xml
pom.xml

index 2764662..ba9011d 100644 (file)
             <version>4.4</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm</artifactId>
+            <version>8.0.1</version>
+            <scope>test</scope>
+        </dependency>
+
         <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
diff --git a/pom.xml b/pom.xml
index e6332db..24b742e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-security</artifactId>
-            <version>9.4.30.v20200611</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>javax.json</artifactId>
             <version>${version.javax.json}</version>
         </dependency>
-        <dependency>
-            <groupId>org.json</groupId>
-            <artifactId>json</artifactId>
-            <version>${version.json}</version>
-        </dependency>
     </dependencies>
 
     <dependencyManagement>