diff options
author | Sanchez, Gabriel (gs882h) <gs882h@att.com> | 2018-06-18 17:30:21 +0100 |
---|---|---|
committer | Sanchez, Gabriel (gs882h) <gabriel.sanchez@amdocs.com> | 2018-06-18 17:36:33 +0100 |
commit | f518411876d6830d83d051a915f0b21bdfdcb43e (patch) | |
tree | 189fb1e3a7650159b0237f29d54a997b4ffbbf78 /pom.xml | |
parent | 72da66902a3efaff3068ed2b3f4f7eb3bb5fe43f (diff) |
Add multi-oxm using schemaIngest library
Use the schemaIngest library to have the
capability to deal with multiple OXM files
Issue-ID: AAI-1192
Change-Id: Icbebbf475bcf9fc3808bc79b9fa95085db46ab77
Signed-off-by: gabriel sanchez <gabriel.sanchez@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 50 |
1 files changed, 49 insertions, 1 deletions
@@ -67,6 +67,7 @@ limitations under the License. <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero> <sonar.projectVersion>${project.version}</sonar.projectVersion> <logback.version>1.2.3</logback.version> + <version.com.google.guava>16.0.1</version.com.google.guava> </properties> <dependencies> @@ -168,6 +169,17 @@ limitations under the License. <version>1.3.0-SNAPSHOT</version> </dependency> <dependency> + <groupId>org.onap.aai.aai-common</groupId> + <artifactId>aai-schema-ingest</artifactId> + <version>1.2.2</version> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>org.onap.aai.router-core</groupId> <artifactId>router-core</artifactId> <version>1.3.0-SNAPSHOT</version> @@ -208,7 +220,11 @@ limitations under the License. <version>1.1.0</version> </dependency> - + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${version.com.google.guava}</version> + </dependency> </dependencies> @@ -278,12 +294,44 @@ limitations under the License. <include>**/*</include> </includes> </resource> + <resource> + <directory>${basedir}/config</directory> + <filtering>true</filtering> + <includes> + <include>schema/**</include> + </includes> + </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>unpack</id> + <phase>prepare-package</phase> + <goals> + <goal>unpack</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.onap.aai.aai-common</groupId> + <artifactId>aai-schema</artifactId> + <version>1.2.2</version> + <type>jar</type> + <includes>oxm/</includes> + <outputDirectory>${project.build.directory}/bundleconfig-local/etc</outputDirectory> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.11</version> |