Merge "Fix security vulnerability, upgrad jquery version"
[policy/apex-pdp.git] / pom.xml
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-pdp</groupId>
32     <artifactId>apex-pdp</artifactId>
33     <version>2.0.0-SNAPSHOT</version>
34     <packaging>pom</packaging>
35
36     <name>policy-apex-pdp</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         <version.derby>10.13.1.1</version.derby>
43         <version.commons-cli>1.4</version.commons-cli>
44         <version.kafka>0.10.2.1</version.kafka>
45         <version.jersey>2.26</version.jersey>
46         <version.eclipselink>2.6.5</version.eclipselink>
47         <version.hibernate>5.3.1.Final</version.hibernate>
48         <version.dom4j>1.6</version.dom4j>
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>
67             <version>1.8.0-beta2</version>
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>
106                                                 <groupId>org.codehaus.mojo</groupId>
107                                                 <artifactId>exec-maven-plugin</artifactId>
108                                                 <versionRange>[1.6.0,)</versionRange>
109                                                 <goals>
110                                                     <goal>java</goal>
111                                                     <goal>exec</goal>
112                                                 </goals>
113                                             </pluginExecutionFilter>
114                                             <action>
115                                                 <execute />
116                                             </action>
117                                         </pluginExecution>
118                                         <pluginExecution>
119                                             <pluginExecutionFilter>
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>
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>
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>
157         <module>context</module>
158         <module>core</module>
159         <module>auth</module>
160         <module>services</module>
161         <module>plugins</module>
162         <module>packages</module>
163         <module>testsuites</module>
164         <module>client</module>
165         <module>tools</module>
166     </modules>
167 </project>