waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | cd7fbbc | 2019-01-15 10:59:15 +0000 | [diff] [blame] | 4 | Copyright (C) 2019 Nordix Foundation. |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +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 | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 21 | <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"> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 25 | <artifactId>services</artifactId> |
jrh3 | d7d9df6 | 2019-09-12 10:07:06 -0400 | [diff] [blame] | 26 | <version>2.3.0-SNAPSHOT</version> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>services-engine</artifactId> |
| 30 | <name>${project.artifactId}</name> |
liamfallon | cd7fbbc | 2019-01-15 10:59:15 +0000 | [diff] [blame] | 31 | <description>External services and infrastructure for adding plugins to the Apex policy execution engine</description> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 35 | <groupId>org.onap.policy.common</groupId> |
| 36 | <artifactId>utils</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
liamfallon | f325083 | 2018-08-30 09:37:29 +0100 | [diff] [blame] | 39 | <groupId>org.onap.policy.common</groupId> |
| 40 | <artifactId>common-parameters</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 43 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 44 | <artifactId>core-engine</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 49 | <artifactId>core-infrastructure</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 54 | <artifactId>core-protocols</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 58 | <groupId>commons-cli</groupId> |
| 59 | <artifactId>commons-cli</artifactId> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 60 | </dependency> |
liamfallon | 5b416f0 | 2018-10-05 23:33:00 +0100 | [diff] [blame] | 61 | <dependency> |
| 62 | <groupId>org.mockito</groupId> |
| 63 | <artifactId>mockito-all</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 66 | </dependencies> |
| 67 | |
| 68 | <build> |
| 69 | <resources> |
| 70 | <!-- Output the version of Apex --> |
| 71 | <resource> |
| 72 | <directory>src/main/resources</directory> |
| 73 | <filtering>true</filtering> |
| 74 | <includes> |
| 75 | <include>**/version.txt</include> |
| 76 | </includes> |
| 77 | </resource> |
| 78 | <resource> |
| 79 | <directory>src/main/resources</directory> |
| 80 | <filtering>false</filtering> |
| 81 | <excludes> |
| 82 | <exclude>**/version.txt</exclude> |
| 83 | </excludes> |
| 84 | </resource> |
| 85 | </resources> |
| 86 | </build> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 87 | |
| 88 | <profiles> |
| 89 | <profile> |
| 90 | <id>apexSite</id> |
| 91 | <activation> |
| 92 | <property> |
| 93 | <name>apexSite</name> |
| 94 | </property> |
| 95 | </activation> |
| 96 | <distributionManagement> |
| 97 | <site> |
| 98 | <id>${project.artifactId}-site</id> |
| 99 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 100 | </site> |
| 101 | </distributionManagement> |
| 102 | </profile> |
| 103 | </profiles> |
liamfallon | cd7fbbc | 2019-01-15 10:59:15 +0000 | [diff] [blame] | 104 | </project> |