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