Upgrade jackson-databind to fix security
[policy/engine.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22         <modelVersion>4.0.0</modelVersion>
23
24         <parent>
25                 <groupId>org.onap.oparent</groupId>
26                 <artifactId>oparent</artifactId>
27                 <version>0.1.1</version>
28                 <relativePath/>
29         </parent>
30
31         <groupId>org.onap.policy.engine</groupId>
32         <artifactId>PolicyEngineSuite</artifactId>
33         <version>1.2.0-SNAPSHOT</version>
34         <packaging>pom</packaging>
35         <name>policy-engine</name>
36
37         <description>The ONAP Policy Engine main pom</description>
38
39         <properties>
40                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41
42                 <jetty.plugin.version>9.2.3.v20140905</jetty.plugin.version>
43                 <project.source.version>1.8</project.source.version>
44                 <project.target.version>1.8</project.target.version>
45                 <project.encoding>UTF-8</project.encoding>
46
47                 <nexusproxy>https://nexus.onap.org</nexusproxy>
48                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
49                 <releases.path>content/repositories/releases/</releases.path>
50                 <snapshots.path>content/repositories/snapshots/</snapshots.path>
51                 <staging.path>content/repositories/staging/</staging.path>
52                 <dmaap.version>1.0.0</dmaap.version>
53                 <httpclient.version>4.5.5</httpclient.version>
54                 <jackson.version>2.9.4</jackson.version>
55                 <commons.fileupload.version>1.3.3</commons.fileupload.version>
56         </properties>
57
58
59         <modules>
60                 <module>PolicyEngineUtils</module>
61                 <module>ONAP-XACML</module>
62                 <module>ONAP-REST</module>
63                 <module>PolicyEngineAPI</module>
64                 <module>ONAP-PDP</module>
65                 <module>ONAP-PDP-REST</module>
66                 <module>ONAP-PAP-REST</module>
67                 <module>LogParser</module>
68                 <module>PolicyEngineClient</module>
69                 <module>BRMSGateway</module>
70                 <module>POLICY-SDK-APP</module>
71                 <module>ONAP-SDK-APP</module>
72                 <module>packages</module>
73         </modules>
74
75         <distributionManagement>
76                 <repository>
77                         <id>ecomp-releases</id>
78                         <name>ONAP Release Repository</name>
79                         <url>${nexusproxy}/${releases.path}</url>
80                 </repository>
81                 <snapshotRepository>
82                         <id>ecomp-snapshots</id>
83                         <name>ONAP Snapshot Repository</name>
84                         <url>${nexusproxy}/${snapshots.path}</url>
85                 </snapshotRepository>
86                 <site>
87                         <id>ecomp-site</id>
88                         <url>dav:${nexusproxy}${sitePath}</url>
89                 </site>
90         </distributionManagement>
91
92         <repositories>
93                 <!-- LF repositories -->
94                 <repository>
95                         <id>ecomp-releases</id>
96                         <name>Release Repository</name>
97                         <url>${nexusproxy}/content/repositories/releases/</url>
98                 </repository>
99                 <repository>
100                         <id>ecomp-staging</id>
101                         <name>Staging Repository</name>
102                         <url>${nexusproxy}/content/repositories/staging/</url>
103                 </repository>
104                 <repository>
105                         <id>ecomp-snapshots</id>
106                         <name>Snapshots Repository</name>
107                         <url>${nexusproxy}/content/repositories/snapshots/</url>
108                 </repository>
109                 <repository>
110                         <id>ecomp-public</id>
111                         <name>Public Repository</name>
112                         <url>${nexusproxy}/content/repositories/public/</url>
113                 </repository>
114                 <!-- LF repositories END-->
115         </repositories>
116
117         <reporting>
118           <plugins>
119             <plugin>
120               <groupId>org.apache.maven.plugins</groupId>
121               <artifactId>maven-javadoc-plugin</artifactId>
122               <version>2.10.4</version>
123               <configuration>
124                 <failOnError>false</failOnError>
125                 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
126                 <docletArtifact>
127                   <groupId>org.umlgraph</groupId>
128                   <artifactId>umlgraph</artifactId>
129                   <version>5.6</version>
130                 </docletArtifact>
131                 <additionalparam>-views</additionalparam>
132                 <useStandardDocletOptions>true</useStandardDocletOptions>
133               </configuration>
134             </plugin>
135           </plugins>
136         </reporting>
137
138         <dependencies>
139
140                 <dependency>
141                         <groupId>javax.servlet</groupId>
142                         <artifactId>javax.servlet-api</artifactId>
143                         <version>3.1.0</version>
144                 </dependency>
145                 <dependency>
146                         <!-- org.w3c.dom dependencies -->
147                         <groupId>xml-apis</groupId>
148                         <artifactId>xml-apis</artifactId>
149                         <version>1.3.03</version>
150                 </dependency>
151         </dependencies>
152
153         <build>
154                 <plugins>
155                         <plugin>
156                                 <groupId>org.sonatype.plugins</groupId>
157                                 <artifactId>nexus-staging-maven-plugin</artifactId>
158                                 <extensions>true</extensions>
159                                 <configuration>
160                                         <nexusUrl>${nexusproxy}</nexusUrl>
161                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
162                                         <serverId>ecomp-staging</serverId>
163                                 </configuration>
164                         </plugin>
165                         <plugin>
166                                 <groupId>org.apache.maven.plugins</groupId>
167                                 <artifactId>maven-deploy-plugin</artifactId>
168                                 <configuration>
169                                         <skip />
170                                 </configuration>
171                         </plugin>
172                         <plugin>
173                                 <groupId>org.apache.maven.plugins</groupId>
174                                 <artifactId>maven-surefire-plugin</artifactId>
175                         </plugin>
176                         <plugin>
177                                 <groupId>org.apache.maven.plugins</groupId>
178                                 <artifactId>maven-clean-plugin</artifactId>
179                                 <version>2.4.1</version>
180                         </plugin>
181                         <plugin>
182                                 <groupId>org.apache.maven.plugins</groupId>
183                                 <artifactId>maven-compiler-plugin</artifactId>
184                                 <version>3.0</version>
185                                 <configuration>
186                                         <encoding>${project.encoding}</encoding>
187                                         <source>${project.source.version}</source>
188                                         <target>${project.target.version}</target>
189                                 </configuration>
190                         </plugin>
191                         <plugin>
192                                 <groupId>org.apache.maven.plugins</groupId>
193                                 <artifactId>maven-resources-plugin</artifactId>
194                                 <version>2.6</version>
195                                 <configuration>
196                                         <encoding>${project.encoding}</encoding>
197                                 </configuration>
198                         </plugin>
199                         <plugin>
200                                 <groupId>org.apache.maven.plugins</groupId>
201                                 <artifactId>maven-war-plugin</artifactId>
202                                 <version>2.3</version>
203                                 <configuration>
204                                         <failOnMissingWebXml>false</failOnMissingWebXml>
205                                 </configuration>
206                         </plugin>
207                         <!-- The Jetty plugin allows us to easily test the development build by
208                                 running jetty:run on the command line. -->
209
210                         <plugin>
211                                 <groupId>org.eclipse.jetty</groupId>
212                                 <artifactId>jetty-maven-plugin</artifactId>
213                                 <version>${jetty.plugin.version}</version>
214                                 <configuration>
215                                         <scanIntervalSeconds>2</scanIntervalSeconds>
216                                 </configuration>
217                         </plugin>
218                         <plugin>
219                                 <groupId>com.fortify.ps.maven.plugin</groupId>
220                                 <artifactId>sca-maven-plugin</artifactId>
221                                 <version>4.20</version>
222                         </plugin>
223                         <plugin>
224                           <groupId>org.apache.maven.plugins</groupId>
225                           <artifactId>maven-site-plugin</artifactId>
226                           <dependencies>
227                             <dependency>
228                               <groupId>org.apache.maven.wagon</groupId>
229                               <artifactId>wagon-webdav-jackrabbit</artifactId>
230                               <version>2.10</version>
231                             </dependency>
232                           </dependencies>
233                         </plugin>
234                 </plugins>
235         <pluginManagement>
236             <plugins>
237                 <plugin>
238                     <groupId>org.eclipse.m2e</groupId>
239                     <artifactId>lifecycle-mapping</artifactId>
240                     <version>1.0.0</version>
241                     <configuration>
242                         <lifecycleMappingMetadata>
243                             <pluginExecutions>
244                                 <pluginExecution>
245                                     <pluginExecutionFilter>
246                                         <groupId>org.apache.maven.plugins</groupId>
247                                         <artifactId>maven-checkstyle-plugin</artifactId>
248                                         <versionRange>2.17,)</versionRange>
249                                         <goals>
250                                             <goal>check</goal>
251                                         </goals>
252                                     </pluginExecutionFilter>
253                                     <action>
254                                         <ignore />
255                                     </action>
256                                 </pluginExecution>
257                             </pluginExecutions>
258                         </lifecycleMappingMetadata>
259                     </configuration>
260                 </plugin>
261             </plugins>
262         </pluginManagement>
263         </build>
264 </project>