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