diff options
author | da490c <dave.adams@amdocs.com> | 2018-06-20 15:29:48 -0400 |
---|---|---|
committer | da490c <dave.adams@amdocs.com> | 2018-06-20 17:08:31 -0400 |
commit | 8eed25b1f4f0ab8306b10c5b77e34143e75d07e8 (patch) | |
tree | a5069c46a0a965546015f44d09d6775f92422bbb /sparkybe-onap-service/pom.xml | |
parent | 3c54febdf3d6e49bd50c7aeca5b4476becfdd027 (diff) |
Add multi-oxm support to sparky-be
Issue-ID: AAI-1232
Change-Id: Ib26fe496f022baf680884ebcee6a02e8eb18c985
Signed-off-by: da490c <dave.adams@amdocs.com>
Diffstat (limited to 'sparkybe-onap-service/pom.xml')
-rw-r--r-- | sparkybe-onap-service/pom.xml | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/sparkybe-onap-service/pom.xml b/sparkybe-onap-service/pom.xml index 73eab22..370f9f0 100644 --- a/sparkybe-onap-service/pom.xml +++ b/sparkybe-onap-service/pom.xml @@ -23,10 +23,15 @@ <nexusproxy>https://nexus.onap.org</nexusproxy> <camel-spring-boot.version>2.20.0</camel-spring-boot.version> <config-home>${basedir}/</config-home> + <version.aai.aai-schema-ingest>1.2.4</version.aai.aai-schema-ingest> + <version.aai-schema>1.3.0-SNAPSHOT</version.aai-schema> <sitePath>/content/sites/site/org/onap/aai/sparky-be/${project.artifactId}/${project.version}</sitePath> <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> </properties> + + + <dependencyManagement> <dependencies> @@ -39,12 +44,6 @@ <scope>import</scope> </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <version>1.2.1</version> - </dependency> - </dependencies> </dependencyManagement> @@ -98,6 +97,10 @@ some of the depedencies should probably have a scope of provided so they don't a <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </exclusion> </exclusions> </dependency> @@ -213,13 +216,25 @@ some of the depedencies should probably have a scope of provided so they don't a <dependency> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-schema</artifactId> - <version>1.3.0-SNAPSHOT</version> + <version>${version.aai-schema}</version> </dependency> + <dependency> + <groupId>org.onap.aai.aai-common</groupId> + <artifactId>aai-schema-ingest</artifactId> + <version>${version.aai.aai-schema-ingest}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>org.onap.aai</groupId> <artifactId>rest-client</artifactId> - <version>1.2.1</version> + <version>1.3.0-SNAPSHOT</version> </dependency> <!-- https://mvnrepository.com/artifact/org.restlet.jee/org.restlet.ext.servlet --> @@ -312,6 +327,12 @@ some of the depedencies should probably have a scope of provided so they don't a <version>1.6.2</version> <scope>test</scope> </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> + <version>1</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.hamcrest</groupId> |