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> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 43 | <version.commons-cli>1.4</version.commons-cli> |
liamfallon | 4d6fc38 | 2018-06-27 12:50:17 +0100 | [diff] [blame] | 44 | <version.kafka>0.10.2.1</version.kafka> |
liamfallon | a40a383 | 2018-07-06 09:41:40 +0100 | [diff] [blame] | 45 | <version.jersey>2.26</version.jersey> |
liamfallon | 4d6fc38 | 2018-06-27 12:50:17 +0100 | [diff] [blame] | 46 | <version.eclipselink>2.6.5</version.eclipselink> |
Dinh Danh Le | 2df5543 | 2018-07-15 02:52:33 +0100 | [diff] [blame] | 47 | <version.hibernate>5.3.1.Final</version.hibernate> |
| 48 | <version.dom4j>1.6</version.dom4j> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 49 | </properties> |
| 50 | |
| 51 | <distributionManagement> |
| 52 | <site> |
| 53 | <id>ecomp-site</id> |
| 54 | <url>dav:${onap.nexus.url}${sitePath}</url> |
| 55 | </site> |
| 56 | </distributionManagement> |
| 57 | |
| 58 | <dependencies> |
| 59 | <dependency> |
| 60 | <groupId>junit</groupId> |
| 61 | <artifactId>junit</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.slf4j</groupId> |
| 66 | <artifactId>slf4j-ext</artifactId> |
liamfallon | f86117b | 2018-06-19 11:31:44 +0800 | [diff] [blame] | 67 | <version>1.8.0-beta2</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.slf4j</groupId> |
| 71 | <artifactId>slf4j-api</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>ch.qos.logback</groupId> |
| 75 | <artifactId>logback-core</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>ch.qos.logback</groupId> |
| 79 | <artifactId>logback-classic</artifactId> |
| 80 | </dependency> |
| 81 | </dependencies> |
| 82 | |
| 83 | |
| 84 | <profiles> |
| 85 | <profile> |
| 86 | <!--This profile is used to store Eclipse m2e settings only. It has no |
| 87 | influence on the Maven build itself. --> |
| 88 | <id>only-eclipse</id> |
| 89 | <activation> |
| 90 | <property> |
| 91 | <name>m2e.version</name> |
| 92 | </property> |
| 93 | </activation> |
| 94 | <build> |
| 95 | <pluginManagement> |
| 96 | <plugins> |
| 97 | <plugin> |
| 98 | <groupId>org.eclipse.m2e</groupId> |
| 99 | <artifactId>lifecycle-mapping</artifactId> |
| 100 | <version>1.0.0</version> |
| 101 | <configuration> |
| 102 | <lifecycleMappingMetadata> |
| 103 | <pluginExecutions> |
| 104 | <pluginExecution> |
| 105 | <pluginExecutionFilter> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 106 | <groupId>org.codehaus.mojo</groupId> |
| 107 | <artifactId>exec-maven-plugin</artifactId> |
waqas.ikram | 4822952 | 2018-05-31 14:49:38 +0100 | [diff] [blame] | 108 | <versionRange>[1.6.0,)</versionRange> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 109 | <goals> |
| 110 | <goal>java</goal> |
ramverma | 28ea336 | 2018-07-18 16:28:07 +0100 | [diff] [blame] | 111 | <goal>exec</goal> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 112 | </goals> |
| 113 | </pluginExecutionFilter> |
| 114 | <action> |
| 115 | <execute /> |
| 116 | </action> |
| 117 | </pluginExecution> |
| 118 | <pluginExecution> |
| 119 | <pluginExecutionFilter> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 120 | <groupId>org.commonjava.maven.plugins</groupId> |
| 121 | <artifactId>directory-maven-plugin</artifactId> |
| 122 | <versionRange>0.2</versionRange> |
| 123 | <goals> |
| 124 | <goal>directory-of</goal> |
| 125 | </goals> |
| 126 | </pluginExecutionFilter> |
| 127 | <action> |
| 128 | <execute /> |
| 129 | </action> |
| 130 | </pluginExecution> |
ramverma | c6d74e6 | 2018-07-11 14:21:13 +0100 | [diff] [blame] | 131 | <pluginExecution> |
| 132 | <pluginExecutionFilter> |
| 133 | <groupId>org.apache.maven.plugins</groupId> |
| 134 | <artifactId>maven-dependency-plugin</artifactId> |
| 135 | <versionRange>[3.0,)</versionRange> |
| 136 | <goals> |
| 137 | <goal>unpack-dependencies</goal> |
| 138 | </goals> |
| 139 | </pluginExecutionFilter> |
| 140 | <action> |
| 141 | <execute /> |
| 142 | </action> |
| 143 | </pluginExecution> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 144 | </pluginExecutions> |
| 145 | </lifecycleMappingMetadata> |
| 146 | </configuration> |
| 147 | </plugin> |
| 148 | </plugins> |
| 149 | </pluginManagement> |
| 150 | </build> |
| 151 | </profile> |
| 152 | </profiles> |
| 153 | |
| 154 | |
| 155 | <modules> |
| 156 | <module>model</module> |
ramverma | 10d58cd | 2018-05-29 15:25:49 +0100 | [diff] [blame] | 157 | <module>context</module> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 158 | <module>core</module> |
waqas.ikram | 5722440 | 2018-06-01 14:23:01 +0100 | [diff] [blame] | 159 | <module>auth</module> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 160 | <module>services</module> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 161 | <module>plugins</module> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 162 | <module>examples</module> |
waqas.ikram | 2816ea6 | 2018-06-27 16:16:42 +0100 | [diff] [blame] | 163 | <module>testsuites</module> |
ramverma | 0ba6678 | 2018-07-06 16:29:16 +0100 | [diff] [blame] | 164 | <module>client</module> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 165 | <module>tools</module> |
liamfallon | 79ae3f7 | 2018-07-24 14:23:37 +0100 | [diff] [blame^] | 166 | <module>packages</module> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 167 | </modules> |
liamfallon | 4d6fc38 | 2018-06-27 12:50:17 +0100 | [diff] [blame] | 168 | </project> |