migrate discovery source codes from OPEN-O
[msb/discovery.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     Copyright 2016 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
22   <groupId>org.onap.msb.discovery</groupId>
23   <artifactId>msb-discovery-parent</artifactId>
24   <version>0.0.1-SNAPSHOT</version>
25   <packaging>pom</packaging>
26   <name>onap/msb/msb-discovery-parent</name> 
27
28   <properties>
29 <!--     <nexusproxy>http://proxynj.zte.com.cn</nexusproxy>
30     <nexus.repository.release>dav:http://10.74.156.77/repos/content/repositories/releases</nexus.repository.release>
31     <nexus.repository.snapshot>dav:http://10.74.156.77/repos/content/repositories/snapshots</nexus.repository.snapshot> -->
32
33
34     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36
37
38
39     <classifier.win32>windows_386</classifier.win32>
40     <classifier.win64>windows_amd64</classifier.win64>
41     <classifier.linux64>linux_amd64</classifier.linux64>
42
43     <linux64outputdir>target/assembly/${classifier.linux64}/</linux64outputdir>
44     <win32outputdir>target/assembly/${classifier.win32}/</win32outputdir>
45     <win64outputdir>target/assembly/${classifier.win64}/</win64outputdir>
46
47     <dockerFileDir>src/main/docker</dockerFileDir>
48     <blueprintFileDir>src/main/blueprint</blueprintFileDir>
49     <version.output>target/version</version.output>
50   </properties>
51
52   <modules>
53     <module>sdclient</module>
54     <module>discovery-ui</module>
55     <module>nginx-ext-consul</module>
56     <module>distributions</module>
57   </modules>
58
59 <!--   <distributionManagement>
60     <repository>
61       <id>releases</id>
62       <url>${nexus.repository.release}</url>
63     </repository>
64     <snapshotRepository>
65       <id>snapshots</id>
66       <url>${nexus.repository.snapshot}</url>
67     </snapshotRepository>
68   </distributionManagement> -->
69
70 <!--   <profiles>  
71       <profile>  
72           <id>linux</id>  
73           <properties>  
74               <env.separator>:</env.separator>  
75           </properties>  
76           <activation>  
77               <activeByDefault>true</activeByDefault>  
78           </activation>
79       </profile>  
80       <profile>  
81           <id>windows</id>  
82           <properties>  
83               <env.separator>;</env.separator>   
84           </properties>   
85       </profile> 
86   </profiles>   -->
87
88   <build>
89 <!--     <extensions>
90         <extension>
91             <groupId>org.apache.maven.wagon</groupId>
92             <artifactId>wagon-ssh</artifactId>
93             <version>2.10</version>
94         </extension>
95         <extension>
96             <groupId>org.apache.maven.wagon</groupId>
97             <artifactId>wagon-ftp</artifactId>
98             <version>2.10</version>
99         </extension>
100         <extension>
101             <groupId>org.apache.maven.wagon</groupId>
102             <artifactId>wagon-webdav-jackrabbit</artifactId>
103             <version>2.10</version>
104         </extension>
105     </extensions> -->
106     <resources>
107         <resource>
108             <filtering>false</filtering>
109             <directory>src/main/resources</directory>
110             <includes>
111                 <include>**/*</include>
112             </includes>
113         </resource>
114         <resource>
115             <filtering>true</filtering>
116             <directory>src/main/filters</directory>
117             <includes>
118                 <include>**/*</include>
119             </includes>
120         </resource>
121     </resources>
122
123     <pluginManagement>
124       <plugins>
125         <!-- Official maven plugins, alpha-sorted by artifactId.
126              We do not need to specify the groupId. -->
127         <plugin>
128           <artifactId>maven-antrun-plugin</artifactId>
129           <version>1.8</version>
130         </plugin>
131         
132         <plugin>
133           <artifactId>maven-clean-plugin</artifactId>
134           <version>2.6.1</version>
135         </plugin>
136         <plugin>
137           <artifactId>maven-install-plugin</artifactId>
138           <version>2.5.2</version>
139         </plugin>
140         <plugin>
141           <artifactId>maven-deploy-plugin</artifactId>
142           <version>2.8.2</version>
143         </plugin>
144         <plugin>
145           <groupId>org.codehaus.mojo</groupId>
146           <artifactId>versions-maven-plugin</artifactId>
147           <version>2.3</version>
148         </plugin>
149
150 <!--         <plugin>
151           <groupId>org.apache.maven.plugins</groupId>
152           <artifactId>maven-plugin-plugin</artifactId>
153           <version>${maven.plugin.version}</version>
154         </plugin> -->
155
156         <plugin>
157           <artifactId>maven-resources-plugin</artifactId>
158           <version>2.7</version>
159         </plugin>
160
161         <plugin>
162           <groupId>org.codehaus.mojo</groupId>
163           <artifactId>build-helper-maven-plugin</artifactId>
164           <version>1.9.1</version>
165         </plugin>
166        
167       </plugins>
168     </pluginManagement>
169   </build> 
170  
171
172
173 </project>
174
175