eikrwaq | a94302f | 2018-05-23 14:08:29 +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 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.parent</groupId> |
| 26 | <artifactId>integration</artifactId> |
| 27 | <version>2.0.0-SNAPSHOT</version> |
| 28 | <relativePath /> |
| 29 | </parent> |
| 30 | |
| 31 | <groupId>org.onap.policy.apex.apex-pdp</groupId> |
| 32 | <artifactId>apex-pdp</artifactId> |
| 33 | <version>2.0.0-SNAPSHOT</version> |
| 34 | <packaging>pom</packaging> |
| 35 | |
| 36 | <name>Apex PDP engine</name> |
| 37 | <description>Packaging for all the Apex components, the engine, the WAR service, and the editor.</description> |
| 38 | |
| 39 | <properties> |
| 40 | <encoding>UTF-8</encoding> |
| 41 | <file.encoding>UTF-8</file.encoding> |
| 42 | </properties> |
| 43 | |
| 44 | <distributionManagement> |
| 45 | <site> |
| 46 | <id>ecomp-site</id> |
| 47 | <url>dav:${onap.nexus.url}${sitePath}</url> |
| 48 | </site> |
| 49 | </distributionManagement> |
| 50 | |
| 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>junit</groupId> |
| 54 | <artifactId>junit</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.slf4j</groupId> |
| 59 | <artifactId>slf4j-ext</artifactId> |
| 60 | <version>1.7.25</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.slf4j</groupId> |
| 64 | <artifactId>slf4j-api</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>ch.qos.logback</groupId> |
| 68 | <artifactId>logback-core</artifactId> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>ch.qos.logback</groupId> |
| 72 | <artifactId>logback-classic</artifactId> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | |
| 76 | |
| 77 | <profiles> |
| 78 | <profile> |
| 79 | <!--This profile is used to store Eclipse m2e settings only. It has no |
| 80 | influence on the Maven build itself. --> |
| 81 | <id>only-eclipse</id> |
| 82 | <activation> |
| 83 | <property> |
| 84 | <name>m2e.version</name> |
| 85 | </property> |
| 86 | </activation> |
| 87 | <build> |
| 88 | <pluginManagement> |
| 89 | <plugins> |
| 90 | <plugin> |
| 91 | <groupId>org.eclipse.m2e</groupId> |
| 92 | <artifactId>lifecycle-mapping</artifactId> |
| 93 | <version>1.0.0</version> |
| 94 | <configuration> |
| 95 | <lifecycleMappingMetadata> |
| 96 | <pluginExecutions> |
| 97 | <pluginExecution> |
| 98 | <pluginExecutionFilter> |
| 99 | <groupId>org.commonjava.maven.plugins</groupId> |
| 100 | <artifactId>directory-maven-plugin</artifactId> |
| 101 | <versionRange>0.2</versionRange> |
| 102 | <goals> |
| 103 | <goal>directory-of</goal> |
| 104 | </goals> |
| 105 | </pluginExecutionFilter> |
| 106 | <action> |
| 107 | <execute /> |
| 108 | </action> |
| 109 | </pluginExecution> |
| 110 | </pluginExecutions> |
| 111 | </lifecycleMappingMetadata> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </pluginManagement> |
| 116 | </build> |
| 117 | </profile> |
| 118 | </profiles> |
| 119 | |
| 120 | |
| 121 | <modules> |
| 122 | <module>model</module> |
| 123 | </modules> |
| 124 | </project> |