272b1a9f77cec972de0ef42dce11131abfc7dcdf
[msb/discovery.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     Copyright 2016-2017 ZTE, Inc. and others.
5
6     Licensed under the Apache License, Version 2.0 (the "License");
7     you may not use this file except in compliance with the License.
8     You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12     Unless required by applicable law or agreed to in writing, software
13     distributed under the License is distributed on an "AS IS" BASIS,
14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15     See the License for the specific language governing permissions and
16     limitations under the License.
17
18 -->
19 <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">
20   <modelVersion>4.0.0</modelVersion>
21   <parent>
22     <groupId>org.onap.oparent</groupId>
23     <artifactId>oparent</artifactId>
24     <version>1.0.0-SNAPSHOT</version>
25   </parent>
26   
27   <groupId>org.onap.msb.discovery</groupId>
28   <artifactId>msb-discovery-parent</artifactId>
29   <version>1.0.0-SNAPSHOT</version>
30   <packaging>pom</packaging>
31   <name>onap/msb/msb-discovery-parent</name> 
32
33   <properties>
34
35     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
37
38
39
40     <classifier.win32>windows_386</classifier.win32>
41     <classifier.win64>windows_amd64</classifier.win64>
42     <classifier.linux64>linux_amd64</classifier.linux64>
43
44     <linux64outputdir>target/assembly/${classifier.linux64}/</linux64outputdir>
45     <win32outputdir>target/assembly/${classifier.win32}/</win32outputdir>
46     <win64outputdir>target/assembly/${classifier.win64}/</win64outputdir>
47
48     <dockerFileDir>src/main/docker</dockerFileDir>
49     <blueprintFileDir>src/main/blueprint</blueprintFileDir>
50     <version.output>target/version</version.output>
51   </properties>
52
53   <modules>
54     <module>sdclient</module>
55     <module>discovery-ui</module>
56     <module>nginx-ext-consul</module>
57     <module>distributions</module>
58   </modules>
59
60 <!--   <distributionManagement>
61     <repository>
62       <id>releases</id>
63       <url>${nexus.repository.release}</url>
64     </repository>
65     <snapshotRepository>
66       <id>snapshots</id>
67       <url>${nexus.repository.snapshot}</url>
68     </snapshotRepository>
69   </distributionManagement> -->
70
71 <!--   <profiles>  
72       <profile>  
73           <id>linux</id>  
74           <properties>  
75               <env.separator>:</env.separator>  
76           </properties>  
77           <activation>  
78               <activeByDefault>true</activeByDefault>  
79           </activation>
80       </profile>  
81       <profile>  
82           <id>windows</id>  
83           <properties>  
84               <env.separator>;</env.separator>   
85           </properties>   
86       </profile> 
87   </profiles>   -->
88
89   <build>
90 <!--     <extensions>
91         <extension>
92             <groupId>org.apache.maven.wagon</groupId>
93             <artifactId>wagon-ssh</artifactId>
94             <version>2.10</version>
95         </extension>
96         <extension>
97             <groupId>org.apache.maven.wagon</groupId>
98             <artifactId>wagon-ftp</artifactId>
99             <version>2.10</version>
100         </extension>
101         <extension>
102             <groupId>org.apache.maven.wagon</groupId>
103             <artifactId>wagon-webdav-jackrabbit</artifactId>
104             <version>2.10</version>
105         </extension>
106     </extensions> -->
107     <resources>
108         <resource>
109             <filtering>false</filtering>
110             <directory>src/main/resources</directory>
111             <includes>
112                 <include>**/*</include>
113             </includes>
114         </resource>
115         <resource>
116             <filtering>true</filtering>
117             <directory>src/main/filters</directory>
118             <includes>
119                 <include>**/*</include>
120             </includes>
121         </resource>
122     </resources>
123
124     <pluginManagement>
125       <plugins>
126         <!-- Official maven plugins, alpha-sorted by artifactId.
127              We do not need to specify the groupId. -->
128         <plugin>
129           <artifactId>maven-antrun-plugin</artifactId>
130           <version>1.8</version>
131         </plugin>
132         
133         <plugin>
134           <artifactId>maven-clean-plugin</artifactId>
135           <version>2.6.1</version>
136         </plugin>
137         <plugin>
138           <artifactId>maven-install-plugin</artifactId>
139           <version>2.5.2</version>
140         </plugin>
141         <plugin>
142           <artifactId>maven-deploy-plugin</artifactId>
143           <version>2.8.2</version>
144         </plugin>
145         <plugin>
146           <groupId>org.codehaus.mojo</groupId>
147           <artifactId>versions-maven-plugin</artifactId>
148           <version>2.3</version>
149         </plugin>
150
151 <!--         <plugin>
152           <groupId>org.apache.maven.plugins</groupId>
153           <artifactId>maven-plugin-plugin</artifactId>
154           <version>${maven.plugin.version}</version>
155         </plugin> -->
156
157         <plugin>
158           <artifactId>maven-resources-plugin</artifactId>
159           <version>2.7</version>
160         </plugin>
161
162         <plugin>
163           <groupId>org.codehaus.mojo</groupId>
164           <artifactId>build-helper-maven-plugin</artifactId>
165           <version>1.9.1</version>
166         </plugin>
167        
168       </plugins>
169     </pluginManagement>
170   </build> 
171  
172
173
174 </project>
175
176