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 | |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 31 | <groupId>org.onap.policy.apex-pdp</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 32 | <artifactId>apex-pdp</artifactId> |
| 33 | <version>2.0.0-SNAPSHOT</version> |
| 34 | <packaging>pom</packaging> |
| 35 | |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 36 | <name>policy-apex-pdp</name> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 42 | <version.derby>10.13.1.1</version.derby> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 43 | </properties> |
| 44 | |
| 45 | <distributionManagement> |
| 46 | <site> |
| 47 | <id>ecomp-site</id> |
| 48 | <url>dav:${onap.nexus.url}${sitePath}</url> |
| 49 | </site> |
| 50 | </distributionManagement> |
| 51 | |
| 52 | <dependencies> |
| 53 | <dependency> |
| 54 | <groupId>junit</groupId> |
| 55 | <artifactId>junit</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.slf4j</groupId> |
| 60 | <artifactId>slf4j-ext</artifactId> |
| 61 | <version>1.7.25</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.slf4j</groupId> |
| 65 | <artifactId>slf4j-api</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>ch.qos.logback</groupId> |
| 69 | <artifactId>logback-core</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>ch.qos.logback</groupId> |
| 73 | <artifactId>logback-classic</artifactId> |
| 74 | </dependency> |
| 75 | </dependencies> |
| 76 | |
| 77 | |
| 78 | <profiles> |
| 79 | <profile> |
| 80 | <!--This profile is used to store Eclipse m2e settings only. It has no |
| 81 | influence on the Maven build itself. --> |
| 82 | <id>only-eclipse</id> |
| 83 | <activation> |
| 84 | <property> |
| 85 | <name>m2e.version</name> |
| 86 | </property> |
| 87 | </activation> |
| 88 | <build> |
| 89 | <pluginManagement> |
| 90 | <plugins> |
| 91 | <plugin> |
| 92 | <groupId>org.eclipse.m2e</groupId> |
| 93 | <artifactId>lifecycle-mapping</artifactId> |
| 94 | <version>1.0.0</version> |
| 95 | <configuration> |
| 96 | <lifecycleMappingMetadata> |
| 97 | <pluginExecutions> |
| 98 | <pluginExecution> |
| 99 | <pluginExecutionFilter> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>exec-maven-plugin</artifactId> |
waqas.ikram | 4822952 | 2018-05-31 14:49:38 +0100 | [diff] [blame] | 102 | <versionRange>[1.6.0,)</versionRange> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 103 | <goals> |
| 104 | <goal>java</goal> |
| 105 | </goals> |
| 106 | </pluginExecutionFilter> |
| 107 | <action> |
| 108 | <execute /> |
| 109 | </action> |
| 110 | </pluginExecution> |
| 111 | <pluginExecution> |
| 112 | <pluginExecutionFilter> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 113 | <groupId>org.commonjava.maven.plugins</groupId> |
| 114 | <artifactId>directory-maven-plugin</artifactId> |
| 115 | <versionRange>0.2</versionRange> |
| 116 | <goals> |
| 117 | <goal>directory-of</goal> |
| 118 | </goals> |
| 119 | </pluginExecutionFilter> |
| 120 | <action> |
| 121 | <execute /> |
| 122 | </action> |
| 123 | </pluginExecution> |
| 124 | </pluginExecutions> |
| 125 | </lifecycleMappingMetadata> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | </plugins> |
| 129 | </pluginManagement> |
| 130 | </build> |
| 131 | </profile> |
| 132 | </profiles> |
| 133 | |
| 134 | |
| 135 | <modules> |
| 136 | <module>model</module> |
ramverma | 10d58cd | 2018-05-29 15:25:49 +0100 | [diff] [blame] | 137 | <module>context</module> |
waqas.ikram | 5722440 | 2018-06-01 14:23:01 +0100 | [diff] [blame^] | 138 | <module>auth</module> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 139 | </modules> |
| 140 | </project> |