ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.tools</groupId> |
| 25 | <artifactId>tools</artifactId> |
| 26 | <version>2.0.0-SNAPSHOT</version> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>model-generator</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>[${project.parent.artifactId}] Apex generators from policy model</description> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.onap.policy.apex-pdp.tools</groupId> |
| 36 | <artifactId>tools-common</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.onap.policy.apex-pdp.model</groupId> |
| 41 | <artifactId>model-api</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 46 | <artifactId>services-engine</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame] | 50 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-schema</groupId> |
| 51 | <artifactId>plugins-context-schema-avro</artifactId> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onap.policy.apex-pdp.auth</groupId> |
| 56 | <artifactId>cli-codegen</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
liamfallon | 2b21188 | 2018-09-27 14:29:21 +0100 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 61 | <artifactId>integration-common</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 65 | </dependencies> |
Dinh Danh Le | a5a4427 | 2018-08-22 12:41:50 +0100 | [diff] [blame] | 66 | |
| 67 | <profiles> |
| 68 | <profile> |
| 69 | <id>apexSite</id> |
| 70 | <activation> |
| 71 | <property> |
| 72 | <name>apexSite</name> |
| 73 | </property> |
| 74 | </activation> |
| 75 | <distributionManagement> |
| 76 | <site> |
| 77 | <id>${project.artifactId}-site</id> |
| 78 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 79 | </site> |
| 80 | </distributionManagement> |
| 81 | </profile> |
| 82 | </profiles> |
| 83 | </project> |