eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | f8000a9 | 2020-01-23 16:50:47 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Nordix Foundation. |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [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 | --> |
liamfallon | f8000a9 | 2020-01-23 16:50:47 +0000 | [diff] [blame] | 21 | <project |
| 22 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 27 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 28 | <artifactId>model</artifactId> |
RossC | 2d0ac52 | 2020-05-21 12:59:22 +0100 | [diff] [blame] | 29 | <version>2.4.0-SNAPSHOT</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 30 | </parent> |
waqas.ikram | 8e424a8 | 2018-05-24 14:39:38 +0100 | [diff] [blame] | 31 | <artifactId>utilities</artifactId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 32 | |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
liamfallon | f8000a9 | 2020-01-23 16:50:47 +0000 | [diff] [blame] | 36 | <groupId>org.onap.policy.common</groupId> |
| 37 | <artifactId>utils</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 40 | <groupId>org.antlr</groupId> |
| 41 | <artifactId>antlr4-runtime</artifactId> |
liamfallon | 8dd87c4 | 2018-06-06 13:34:03 +0100 | [diff] [blame] | 42 | <version>4.7.1</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 43 | </dependency> |
waqas.ikram | 5722440 | 2018-06-01 14:23:01 +0100 | [diff] [blame] | 44 | <dependency> |
| 45 | <groupId>com.google.code.gson</groupId> |
| 46 | <artifactId>gson</artifactId> |
waqas.ikram | 5722440 | 2018-06-01 14:23:01 +0100 | [diff] [blame] | 47 | </dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 48 | </dependencies> |
| 49 | |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 50 | <profiles> |
| 51 | <profile> |
| 52 | <id>apexSite</id> |
| 53 | <activation> |
| 54 | <property> |
| 55 | <name>apexSite</name> |
| 56 | </property> |
| 57 | </activation> |
| 58 | <distributionManagement> |
| 59 | <site> |
| 60 | <id>${project.artifactId}-site</id> |
| 61 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 62 | </site> |
| 63 | </distributionManagement> |
| 64 | </profile> |
| 65 | </profiles> |
liamfallon | 8dd87c4 | 2018-06-06 13:34:03 +0100 | [diff] [blame] | 66 | </project> |