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