diff options
author | Maharajh, Robby (rx2202) <rx2202@us.att.com> | 2020-09-09 19:57:16 -0400 |
---|---|---|
committer | Maharajh, Robby (rx2202) <rx2202@us.att.com> | 2020-09-09 19:57:19 -0400 |
commit | 134ca0a1494ebd664ab2985c1018627624f29f02 (patch) | |
tree | 05cd83159ad7bf0fab2b0d0cef53725708af6414 /aai-traversal/pom.xml | |
parent | 32928ac8938a6e660f8ed0213c31882423952ddc (diff) |
Update traversal to use spring boot 2
Issue-ID: AAI-2886
Issue-ID: AAI-2527
Change-Id: Id6432ff82b0377ff44115d5b42607d1926431f7b
Signed-off-by: Maharajh, Robby (rx2202) <rx2202@us.att.com>
Diffstat (limited to 'aai-traversal/pom.xml')
-rw-r--r-- | aai-traversal/pom.xml | 68 |
1 files changed, 26 insertions, 42 deletions
diff --git a/aai-traversal/pom.xml b/aai-traversal/pom.xml index baa56d5..3a74bca 100644 --- a/aai-traversal/pom.xml +++ b/aai-traversal/pom.xml @@ -34,7 +34,6 @@ <artifactId>aai-traversal</artifactId> <properties> - <aai.schema.service.version>1.7.3</aai.schema.service.version> <mockito.core.version>1.10.19</mockito.core.version> <java.version>1.8</java.version> <start-class>org.onap.aai.TraversalApp</start-class> @@ -93,8 +92,8 @@ <schema.version.app.root.start>v11</schema.version.app.root.start> <schema.version.namespace.change.start>v12</schema.version.namespace.change.start> <schema.version.edge.label.start>v12</schema.version.edge.label.start> - <schema.version.api.default>v16</schema.version.api.default> - <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19,v20</schema.version.list> + <schema.version.api.default>v21</schema.version.api.default> + <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21</schema.version.list> <schema.uri.base.path>/aai</schema.uri.base.path> <!-- End of Default ONAP Schema Properties --> </properties> @@ -301,6 +300,28 @@ <artifactId>spring-boot-starter-parent</artifactId> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> --> <dependencies> + <dependency> + <groupId>javax.jms</groupId> + <artifactId>javax.jms-api</artifactId> + <version>2.0.1</version> + </dependency> + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + <version>2.1</version> + </dependency> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-core</artifactId> + </dependency> <dependency> <groupId>net.sf.jopt-simple</groupId> <artifactId>jopt-simple</artifactId> @@ -400,30 +421,6 @@ </dependency> <dependency> <groupId>org.janusgraph</groupId> - <artifactId>janusgraph-core</artifactId> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - <exclusion> - <groupId>dom4j</groupId> - <artifactId>dom4j</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.janusgraph</groupId> - <artifactId>janusgraph-cassandra</artifactId> - <exclusions> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.janusgraph</groupId> <artifactId>janusgraph-cql</artifactId> <exclusions> <exclusion> @@ -432,11 +429,6 @@ </exclusion> </exclusions> </dependency> - <!-- <dependency> <groupId>org.janusgraph</groupId> <artifactId>janusgraph-hbase</artifactId> - <exclusions> <exclusion> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> - </exclusion> </exclusions> </dependency> --> - <!-- indirect janusgraph-cassandra dependency need to be newer than default - one in order to support multiple cpu archs --> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-ffi</artifactId> @@ -632,16 +624,6 @@ <artifactId>spring-boot-starter-jetty</artifactId> </dependency> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-jersey</artifactId> - <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-tomcat</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> <groupId>org.onap.aaf.authz</groupId> <artifactId>aaf-cadi-aaf</artifactId> </dependency> @@ -957,6 +939,7 @@ <artifactId>aai-schema</artifactId> <outputDirectory>${project.basedir}/src/main/resources/schema/</outputDirectory> <includes>**/oxm/**/*.xml</includes> + <version>${aai.schema.service.version}</version> </artifactItem> </artifactItems> <!-- other configurations here --> @@ -975,6 +958,7 @@ <artifactId>aai-schema</artifactId> <outputDirectory>${project.basedir}/src/main/resources/schema/</outputDirectory> <includes>**/dbedgerules/**/*.json</includes> + <version>${aai.schema.service.version}</version> </artifactItem> </artifactItems> <!-- other configurations here --> |