diff options
author | 2019-03-26 17:08:31 +0000 | |
---|---|---|
committer | 2019-03-26 17:08:31 +0000 | |
commit | a2550a75f9308ec2b00f93523373f079057701fe (patch) | |
tree | f2eb8643fc1b8817b9673297913cb90e999d3bd6 /models-base/pom.xml | |
parent | 2c5a396554a34cddc2f43d98c72665d5b1496f85 (diff) | |
parent | 35c6f2df3df2de7f54f717c2167f7b170494cdc9 (diff) |
Merge "Add ErrorResponse to policy framework exceptions"
Diffstat (limited to 'models-base/pom.xml')
-rw-r--r-- | models-base/pom.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/models-base/pom.xml b/models-base/pom.xml index 712bc9108..0523c3324 100644 --- a/models-base/pom.xml +++ b/models-base/pom.xml @@ -17,8 +17,7 @@ SPDX-License-Identifier: Apache-2.0 ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -30,4 +29,12 @@ <artifactId>policy-models-base</artifactId> <name>${project.artifactId}</name> <description>[${project.parent.artifactId}] module provides basic model handling for the ONAP Policy Framework</description> + + <dependencies> + <dependency> + <groupId>org.onap.policy.models</groupId> + <artifactId>policy-models-errors</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> </project> |