liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
Jim Hahn | 417e292 | 2021-06-17 16:54:20 -0400 | [diff] [blame] | 4 | Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.models</groupId> |
| 27 | <artifactId>policy-models</artifactId> |
liamfallon | 92ba62e | 2021-11-26 09:30:04 +0000 | [diff] [blame] | 28 | <version>2.6.1-SNAPSHOT</version> |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>policy-models-dao</artifactId> |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>[${project.parent.artifactId}] module provides common DAO (Data Access Object) model handling for the ONAP Policy Framework</description> |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.models</groupId> |
| 38 | <artifactId>policy-models-base</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>com.h2database</groupId> |
| 43 | <artifactId>h2</artifactId> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
liamfallon | b694be1 | 2019-03-05 09:35:16 +0000 | [diff] [blame] | 46 | </dependencies> |
liamfallon | f240fda | 2019-02-26 13:57:39 +0000 | [diff] [blame] | 47 | </project> |