887233bd0dbce15d6588b525f2ede41c5e6af3fe
[integration/distribution.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <parent>
4     <groupId>org.opendaylight.odlparent</groupId>
5     <artifactId>odlparent</artifactId>
6     <version>1.5.0-SNAPSHOT</version>
7     <relativePath>../odlparent/odlparent</relativePath>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.opendaylight.integration</groupId>
11   <artifactId>root</artifactId>
12   <version>0.3.0-SNAPSHOT</version>
13   <name>integration</name> <!-- Used by Sonar to set project name -->
14   <packaging>pom</packaging>
15   <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
16   <scm>
17     <connection>scm:git:ssh://git.opendaylight.org:29418/integration.git</connection>
18     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration.git</developerConnection>
19     <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
20     <tag>HEAD</tag>
21   </scm>
22   <properties>
23     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25     <feature.dlux.version>0.2.0-SNAPSHOT</feature.dlux.version>
26     <feature.mdsal.version>1.2.0-SNAPSHOT</feature.mdsal.version>
27     <feature.flow.version>1.2.0-SNAPSHOT</feature.flow.version>
28     <feature.yangtools.version>0.7.0-SNAPSHOT</feature.yangtools.version>
29     <feature.adsal.version>0.9.0-SNAPSHOT</feature.adsal.version>
30     <feature.neutron.version>0.5.0-SNAPSHOT</feature.neutron.version>
31     <feature.nsf.version>0.5.0-SNAPSHOT</feature.nsf.version>
32     <feature.openflowplugin.version>0.1.0-SNAPSHOT</feature.openflowplugin.version>
33     <feature.ovsdb.version>1.1.0-SNAPSHOT</feature.ovsdb.version>
34     <feature.ovsdb.openstack.version>1.1.0-SNAPSHOT</feature.ovsdb.openstack.version>
35     <feature.groupbasedpolicy.version>0.2.0-SNAPSHOT</feature.groupbasedpolicy.version>
36     <feature.lispflowmapping.version>1.2.0-SNAPSHOT</feature.lispflowmapping.version>
37     <feature.sfc.version>0.1.0-SNAPSHOT</feature.sfc.version>
38     <feature.snbi.version>1.1.0-SNAPSHOT</feature.snbi.version>
39     <feature.ttp.version>0.1.0-SNAPSHOT</feature.ttp.version>
40     <feature.usc.version>1.0-SNAPSHOT</feature.usc.version>
41     <feature.vtn-manager.version>0.3.0-SNAPSHOT</feature.vtn-manager.version>
42     <feature.bgpcep.version>0.4.0-SNAPSHOT</feature.bgpcep.version>
43     <feature.packetcable.version>1.2.0-SNAPSHOT</feature.packetcable.version>
44     <feature.plugin2oc.version>0.2.0-SNAPSHOT</feature.plugin2oc.version>
45     <feature.tcpmd5.version>1.1.0-SNAPSHOT</feature.tcpmd5.version>
46     <feature.topoprocessing.version>0.0.1-SNAPSHOT</feature.topoprocessing.version>
47     <karaf.branding.version>1.1.0-SNAPSHOT</karaf.branding.version>
48     <maven.surefire.version>2.16</maven.surefire.version>
49     <checkstyle.version>2.13</checkstyle.version>
50     <enforcer.version>1.3.1</enforcer.version>
51     <snmp.plugin.version>1.0-SNAPSHOT</snmp.plugin.version>
52     <didm.version>0.1.0-SNAPSHOT</didm.version>
53     <feature.vpnservice.version>1.0-SNAPSHOT</feature.vpnservice.version>
54     <feature.lacp.version>1.0.0-SNAPSHOT</feature.lacp.version>
55   </properties>
56   <modules>
57     <module>distributions/</module>
58     <module>features/</module>
59     <module>feature-selector</module>
60   </modules>
61
62   <repositories>
63
64     <!-- OpenDayLight Repo Mirror -->
65     <repository>
66       <id>opendaylight-mirror</id>
67       <name>opendaylight-mirror</name>
68       <url>${nexusproxy}/groups/public/</url>
69       <snapshots>
70           <enabled>false</enabled>
71       </snapshots>
72       <releases>
73           <enabled>true</enabled>
74           <updatePolicy>never</updatePolicy>
75       </releases>
76     </repository>
77     <!-- OpenDayLight Snapshot artifact -->
78     <repository>
79       <id>opendaylight-snapshot</id>
80       <name>opendaylight-snapshot</name>
81       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
82       <snapshots>
83           <enabled>true</enabled>
84       </snapshots>
85       <releases>
86           <enabled>false</enabled>
87       </releases>
88     </repository>
89   </repositories>
90
91   <pluginRepositories>
92     <pluginRepository>
93       <id>central2</id>
94       <name>central2</name>
95       <url>${nexusproxy}/repositories/central2/</url>
96     </pluginRepository>
97     <pluginRepository>
98       <id>opendaylight-snapshot</id>
99       <name>central2</name>
100       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
101     </pluginRepository>
102   </pluginRepositories>
103
104   <distributionManagement>
105     <!-- OpenDayLight Released artifact -->
106     <repository>
107       <id>opendaylight-release</id>
108       <url>${nexusproxy}/repositories/opendaylight.release/</url>
109     </repository>
110     <!-- OpenDayLight Snapshot artifact -->
111     <snapshotRepository>
112       <id>opendaylight-snapshot</id>
113       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
114     </snapshotRepository>
115     <site>
116       <id>${project.artifactId}-site</id>
117       <url>./</url>
118     </site>
119   </distributionManagement>
120   <dependencyManagement>
121       <dependencies>
122         <!-- Karaf basic pieces -->
123         <dependency>
124           <!-- scope is compile so all features (there is only one) are installed
125             into startup.properties and the feature repo itself is not installed -->
126           <groupId>org.apache.karaf.features</groupId>
127           <artifactId>framework</artifactId>
128           <version>${karaf.version}</version>
129           <type>kar</type>
130         </dependency>
131         <!-- scope is runtime so the feature repo is listed in the features
132           service config file, and features may be installed using the
133           karaf-maven-plugin configuration -->
134         <dependency>
135           <groupId>org.apache.karaf.features</groupId>
136           <artifactId>standard</artifactId>
137           <version>${karaf.version}</version>
138           <classifier>features</classifier>
139           <type>xml</type>
140         </dependency>
141
142         <!-- Karaf Branding -->
143         <dependency>
144           <groupId>org.opendaylight.controller</groupId>
145           <artifactId>karaf.branding</artifactId>
146           <version>${karaf.branding.version}</version>
147         </dependency>
148
149         <!-- Integration features -->
150         <dependency>
151           <groupId>org.opendaylight.integration</groupId>
152           <artifactId>features-integration</artifactId>
153           <version>${project.version}</version>
154           <classifier>features</classifier>
155           <type>xml</type>
156         </dependency>
157         <!-- MD-SAL Related Features -->
158         <dependency>
159           <groupId>org.opendaylight.controller</groupId>
160           <artifactId>features-mdsal</artifactId>
161           <version>${feature.mdsal.version}</version>
162           <classifier>features</classifier>
163           <type>xml</type>
164         </dependency>
165         <dependency>
166           <groupId>org.opendaylight.controller</groupId>
167           <artifactId>features-flow</artifactId>
168           <version>${feature.flow.version}</version>
169           <classifier>features</classifier>
170           <type>xml</type>
171         </dependency>
172         <!-- AD-SAL Related Features -->
173         <dependency>
174           <groupId>org.opendaylight.controller</groupId>
175           <artifactId>features-adsal</artifactId>
176           <version>${feature.adsal.version}</version>
177           <classifier>features</classifier>
178           <type>xml</type>
179         </dependency>
180         <dependency>
181           <groupId>org.opendaylight.controller</groupId>
182           <artifactId>features-nsf</artifactId>
183           <version>${feature.nsf.version}</version>
184           <classifier>features</classifier>
185           <type>xml</type>
186         </dependency>
187         <!-- VTN Features -->
188         <dependency>
189           <groupId>org.opendaylight.vtn</groupId>
190           <artifactId>features-vtn-manager</artifactId>
191           <version>${feature.vtn-manager.version}</version>
192           <classifier>features</classifier>
193           <type>xml</type>
194         </dependency>
195
196
197         <!-- GBP Features -->
198         <dependency>
199           <groupId>org.opendaylight.groupbasedpolicy</groupId>
200           <artifactId>features-groupbasedpolicy</artifactId>
201           <version>${feature.groupbasedpolicy.version}</version>
202           <classifier>features</classifier>
203           <type>xml</type>
204         </dependency>
205
206         <!-- SFC features -->
207        <dependency>
208           <groupId>org.opendaylight.sfc</groupId>
209           <artifactId>features-sfc</artifactId>
210           <version>${feature.sfc.version}</version>
211           <classifier>features</classifier>
212           <type>xml</type>
213        </dependency>
214
215         <dependency>
216           <groupId>org.opendaylight.tcpmd5</groupId>
217           <artifactId>features-tcpmd5</artifactId>
218           <version>${feature.tcpmd5.version}</version>
219           <classifier>features</classifier>
220           <type>xml</type>
221         </dependency>
222
223         <dependency>
224           <groupId>org.opendaylight.bgpcep</groupId>
225           <artifactId>features-bgp</artifactId>
226           <version>${feature.bgpcep.version}</version>
227           <classifier>features</classifier>
228           <type>xml</type>
229         </dependency>
230         <dependency>
231           <groupId>org.opendaylight.bgpcep</groupId>
232           <artifactId>features-extras</artifactId>
233           <version>${feature.bgpcep.version}</version>
234           <classifier>features</classifier>
235           <type>xml</type>
236         </dependency>
237         <dependency>
238           <groupId>org.opendaylight.bgpcep</groupId>
239           <artifactId>features-pcep</artifactId>
240           <version>${feature.bgpcep.version}</version>
241           <classifier>features</classifier>
242           <type>xml</type>
243         </dependency>
244
245         <!-- OVSDB Related Features -->
246         <dependency>
247           <groupId>org.opendaylight.ovsdb</groupId>
248           <artifactId>features-ovsdb</artifactId>
249           <version>${feature.ovsdb.version}</version>
250           <classifier>features</classifier>
251           <type>xml</type>
252         </dependency>
253
254         <!-- Plugin2oc Related Features -->
255         <dependency>
256           <groupId>org.opendaylight.plugin2oc</groupId>
257           <artifactId>features-plugin2oc</artifactId>
258           <version>0.2.0-SNAPSHOT</version>
259           <classifier>features</classifier>
260           <type>xml</type>
261         </dependency>
262
263         <!-- packetcable Related Features -->
264         <dependency>
265            <groupId>org.opendaylight.packetcable</groupId>
266            <artifactId>features-packetcable</artifactId>
267            <version>${feature.packetcable.version}</version>
268            <classifier>features</classifier>
269           <type>xml</type>
270         </dependency>
271       </dependencies>
272   </dependencyManagement>
273   <build>
274     <pluginManagement>
275       <plugins>
276         <plugin>
277           <groupId>org.apache.maven.plugins</groupId>
278           <artifactId>maven-surefire-plugin</artifactId>
279           <version>${maven.surefire.version}</version>
280         </plugin>
281       </plugins>
282     </pluginManagement>
283
284     <plugins>
285       <plugin>
286         <groupId>org.apache.maven.plugins</groupId>
287         <artifactId>maven-enforcer-plugin</artifactId>
288         <version>${enforcer.version}</version>
289         <executions>
290           <execution>
291             <id>enforce-maven</id>
292             <goals>
293               <goal>enforce</goal>
294             </goals>
295             <configuration>
296               <rules>
297                 <requireMavenVersion>
298                   <version>3.1.1</version>
299                 </requireMavenVersion>
300               </rules>
301             </configuration>
302           </execution>
303         </executions>
304       </plugin>
305     </plugins>
306   </build>
307 </project>