Bump MSB artifacts version to 1.2.0
[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>1.1.0</version>
26   </parent>
27   <groupId>org.onap.msb.apigateway</groupId>
28   <artifactId>msb-apigateway-parent</artifactId>
29   <version>1.2.0-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     <additionalparam>-Xdoclint:none</additionalparam>
51   </properties>
52   <distributionManagement>
53     <site>
54       <id>ecomp-site</id>
55       <url>${onap.nexus.javadocs-url}</url>
56     </site>         
57   </distributionManagement>
58   <modules>
59     <module>apiroute</module>
60     <module>openresty-ext</module>
61     <module>redis-ext</module>
62     <module>distributions</module>
63   </modules>
64   <build>
65     <resources>
66       <resource>
67         <filtering>false</filtering>
68         <directory>src/main/resources</directory>
69         <includes>
70           <include>**/*</include>
71         </includes>
72       </resource>
73       <resource>
74         <filtering>true</filtering>
75         <directory>src/main/filters</directory>
76         <includes>
77           <include>**/*</include>
78         </includes>
79       </resource>
80     </resources>
81     <pluginManagement>
82       <plugins>
83         <!-- Official maven plugins, alpha-sorted by artifactId.
84              We do not need to specify the groupId. -->
85         <plugin>
86           <artifactId>maven-antrun-plugin</artifactId>
87           <version>1.8</version>
88         </plugin>
89         <plugin>
90           <artifactId>maven-clean-plugin</artifactId>
91           <version>2.6.1</version>
92         </plugin>
93         <plugin>
94           <artifactId>maven-install-plugin</artifactId>
95           <version>2.5.2</version>
96         </plugin>
97         <plugin>
98           <artifactId>maven-deploy-plugin</artifactId>
99           <version>2.8.2</version>
100         </plugin>
101         <plugin>
102           <groupId>org.apache.maven.plugins</groupId>
103           <artifactId>maven-dependency-plugin</artifactId>
104           <version>2.10</version>
105         </plugin>
106         <plugin>
107           <artifactId>maven-resources-plugin</artifactId>
108           <version>2.7</version>
109         </plugin>
110         <plugin>
111           <groupId>org.codehaus.mojo</groupId>
112           <artifactId>build-helper-maven-plugin</artifactId>
113           <version>1.9.1</version>
114         </plugin>
115         <plugin>
116           <groupId>org.apache.maven.plugins</groupId>
117           <artifactId>maven-site-plugin</artifactId>
118           <version>3.6</version>
119           <configuration>
120             <reportPlugins>
121               <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-project-info-reports-plugin</artifactId>
124                 <version>2.4</version>
125                 <configuration>
126                   <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
127                   <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
128                 </configuration>
129                 <reports>
130                   <report>dependencies</report>
131                 </reports>
132               </plugin>
133               <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-javadoc-plugin</artifactId>
136                 <version>2.8</version>
137               </plugin>
138             </reportPlugins>
139           </configuration>
140           <dependencies>
141             <dependency>
142               <groupId>org.apache.maven.wagon</groupId>
143               <artifactId>wagon-webdav-jackrabbit</artifactId>
144               <version>2.10</version>
145             </dependency>
146           </dependencies>
147         </plugin>
148       </plugins>
149     </pluginManagement>
150   </build>
151 </project>