Exclude jax-rs 1, force jax-rs 2 09/104309/2
authorTschaen, Brendan <ctschaen@att.com>
Tue, 24 Mar 2020 21:07:00 +0000 (17:07 -0400)
committerTschaen, Brendan <ctschaen@att.com>
Tue, 24 Mar 2020 21:16:02 +0000 (17:16 -0400)
Issue-ID: MUSIC-561
Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
Change-Id: I55fc7bf1bbbbdd4fc0b5d62276ba77c9ae81260d

music-core/pom.xml

index 8327bf4..a1fc3a6 100755 (executable)
             <scope>test</scope>
         </dependency>
         <!--  /Testing -->
-
         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
         <dependency>
             <groupId>com.fasterxml.jackson.datatype</groupId>
                        <groupId>com.sun.jersey.contribs</groupId>
             <artifactId>jersey-multipart</artifactId>
             <version>1.19</version>
+            <exclusions>
+              <exclusion>
+                <groupId>javax.ws.rs</groupId>
+                <artifactId>jsr311-api</artifactId>
+              </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>javax.ws.rs</groupId>
+            <artifactId>javax.ws.rs-api</artifactId>
+            <version>2.0.1</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>com.google.guava</groupId>