diff options
author | jjia <Jennie.Jia@amdocs.com> | 2018-12-31 12:18:59 -0500 |
---|---|---|
committer | jjia <Jennie.Jia@amdocs.com> | 2019-01-02 14:36:04 -0500 |
commit | ab1a2ed3d961919008bad949e62fcf3ba722c2ce (patch) | |
tree | 6e796cd107c4bc6dd07892461d602a2ea9ff1844 /pom.xml | |
parent | 4ab14055e6131ff5c513b24192e84b952340ced9 (diff) |
Update Data Router with new schema ingest lib
Issue-ID: AAI-2044
Change-Id: I905ee7ce7716538a8336ff30a4a0286cb7685f2f
Signed-off-by: jjia <Jennie.Jia@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 24 |
1 files changed, 16 insertions, 8 deletions
@@ -48,6 +48,7 @@ limitations under the License. <installOwnerUser>aaiadmin</installOwnerUser> <installOwnerGroup>aaiadmin</installOwnerGroup> <ownerManagementGroup>com.att.csid.lab</ownerManagementGroup> + <version.aai-schema>1.4.1-SNAPSHOT</version.aai-schema> <!-- Port Selection. A value of 0 will allow for dynamic port selection. For local testing, you may choose to hardcode this value to something like @@ -197,12 +198,7 @@ limitations under the License. <version>1.4.0-SNAPSHOT</version> </dependency> - <dependency> - <groupId>org.onap.aai.aai-common</groupId> - <artifactId>aai-schema-ingest</artifactId> - <version>1.3.0</version> - </dependency> - + <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> @@ -343,6 +339,18 @@ limitations under the License. <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.21.0</version> + <configuration> + <systemPropertyVariables> + <APP_HOME>${project.basedir}</APP_HOME> + <CONFIG_HOME>${project.basedir}/src/test/resources/config</CONFIG_HOME> + <SERVICE_BEANS>${project.basedir}/src/test/resources/spring-beans</SERVICE_BEANS> + <testShemaUnpackVersion>${shemaUnpackVersion}</testShemaUnpackVersion> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> @@ -396,7 +404,7 @@ limitations under the License. <executions> <execution> <id>unpack</id> - <phase>prepare-package</phase> + <phase>initialize</phase> <goals> <goal>unpack</goal> </goals> @@ -405,7 +413,7 @@ limitations under the License. <artifactItem> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-schema</artifactId> - <version>1.3.0</version> + <version>${version.aai-schema}</version> <type>jar</type> <includes>/${shemaUnpackVersion}/oxm/</includes> <outputDirectory>${project.build.directory}/oxm</outputDirectory> |