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