Fix Nexus-IQ security issues
[msb/apigateway.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3     Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
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 -->
18 <project 
19   xmlns="http://maven.apache.org/POM/4.0.0" 
20   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21   <modelVersion>4.0.0</modelVersion>
22   <parent>
23     <groupId>org.onap.oparent</groupId>
24     <artifactId>oparent</artifactId>
25     <version>0.1.1</version>
26   </parent>
27   <groupId>org.onap.msb.apigateway</groupId>
28   <artifactId>msb-apigateway-parent</artifactId>
29   <version>1.0.1-SNAPSHOT</version>
30   <packaging>pom</packaging>
31   <name>msb-apigateway</name>
32   <properties>
33     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
35     <maven.surefire.version>2.18.1</maven.surefire.version>
36     <openresty.version>1.11.2.2</openresty.version>
37     <openresty-windows.version>1.11.9.1001</openresty-windows.version>
38     <redis.version>3.2.6</redis.version>
39     <redis-windows.version>3.2.100</redis-windows.version>
40     <classifier.win32>windows_386</classifier.win32>
41     <classifier.win64>windows_amd64</classifier.win64>
42     <classifier.linux64>linux_amd64</classifier.linux64>
43     <linux64outputdir>target/assembly/${classifier.linux64}/</linux64outputdir>
44     <win32outputdir>target/assembly/${classifier.win32}/</win32outputdir>
45     <win64outputdir>target/assembly/${classifier.win64}/</win64outputdir>
46     <dockerFileDir>src/main/docker</dockerFileDir>
47     <blueprintFileDir>src/main/blueprint</blueprintFileDir>
48     <version.output>target/version</version.output>
49     <onap.nexus.javadocs-url>dav:https://nexus.onap.org/content/sites/site/org/onap/msb/apigateway/${project.version}</onap.nexus.javadocs-url>
50   </properties>
51   <distributionManagement>
52     <site>
53       <id>ecomp-site</id>
54       <url>${onap.nexus.javadocs-url}</url>
55     </site>         
56   </distributionManagement>
57   <modules>
58     <module>apiroute</module>
59     <module>openresty-ext</module>
60     <module>redis-ext</module>
61     <module>distributions</module>
62   </modules>
63   <build>
64     <resources>
65       <resource>
66         <filtering>false</filtering>
67         <directory>src/main/resources</directory>
68         <includes>
69           <include>**/*</include>
70         </includes>
71       </resource>
72       <resource>
73         <filtering>true</filtering>
74         <directory>src/main/filters</directory>
75         <includes>
76           <include>**/*</include>
77         </includes>
78       </resource>
79     </resources>
80     <pluginManagement>
81       <plugins>
82         <!-- Official maven plugins, alpha-sorted by artifactId.
83              We do not need to specify the groupId. -->
84         <plugin>
85           <artifactId>maven-antrun-plugin</artifactId>
86           <version>1.8</version>
87         </plugin>
88         <plugin>
89           <artifactId>maven-clean-plugin</artifactId>
90           <version>2.6.1</version>
91         </plugin>
92         <plugin>
93           <artifactId>maven-install-plugin</artifactId>
94           <version>2.5.2</version>
95         </plugin>
96         <plugin>
97           <artifactId>maven-deploy-plugin</artifactId>
98           <version>2.8.2</version>
99         </plugin>
100         <plugin>
101           <groupId>org.apache.maven.plugins</groupId>
102           <artifactId>maven-dependency-plugin</artifactId>
103           <version>2.10</version>
104         </plugin>
105         <plugin>
106           <artifactId>maven-resources-plugin</artifactId>
107           <version>2.7</version>
108         </plugin>
109         <plugin>
110           <groupId>org.codehaus.mojo</groupId>
111           <artifactId>build-helper-maven-plugin</artifactId>
112           <version>1.9.1</version>
113         </plugin>
114         <plugin>
115           <groupId>org.apache.maven.plugins</groupId>
116           <artifactId>maven-site-plugin</artifactId>
117           <version>3.6</version>
118           <configuration>
119             <reportPlugins>
120               <plugin>
121                 <groupId>org.apache.maven.plugins</groupId>
122                 <artifactId>maven-project-info-reports-plugin</artifactId>
123                 <version>2.4</version>
124                 <configuration>
125                   <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
126                   <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
127                 </configuration>
128                 <reports>
129                   <report>dependencies</report>
130                 </reports>
131               </plugin>
132               <plugin>
133                 <groupId>org.apache.maven.plugins</groupId>
134                 <artifactId>maven-javadoc-plugin</artifactId>
135                 <version>2.8</version>
136               </plugin>
137             </reportPlugins>
138           </configuration>
139           <dependencies>
140             <dependency>
141               <groupId>org.apache.maven.wagon</groupId>
142               <artifactId>wagon-webdav-jackrabbit</artifactId>
143               <version>2.10</version>
144             </dependency>
145           </dependencies>
146         </plugin>
147       </plugins>
148     </pluginManagement>
149   </build>
150 </project>