Fixing the integrateremoving clustering app feature, was causing integration breakage
[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   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7   <groupId>org.opendaylight.integration</groupId>
8   <artifactId>root</artifactId>
9   <version>0.2.0-SNAPSHOT</version>
10   <name>OpenDaylight Integration Project</name>
11   <packaging>pom</packaging>
12   <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
13   <scm>
14     <connection>scm:git:ssh://git.opendaylight.org:29418/integration.git</connection>
15     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration.git</developerConnection>
16     <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
17     <tag>HEAD</tag>
18   </scm>
19   <properties>
20     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
21     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22     <feature.dlux.version>0.1.0-SNAPSHOT</feature.dlux.version>
23     <feature.mdsal.version>1.1-SNAPSHOT</feature.mdsal.version>
24     <feature.flow.version>1.1-SNAPSHOT</feature.flow.version>
25     <feature.yangtools.version>0.6.2-SNAPSHOT</feature.yangtools.version>
26     <feature.adsal.version>0.8.1-SNAPSHOT</feature.adsal.version>
27     <feature.nsf.version>0.4.2-SNAPSHOT</feature.nsf.version>
28     <feature.ovsdb.version>1.0.0-SNAPSHOT</feature.ovsdb.version>
29     <feature.ovsdb.openstack.version>1.0.0-SNAPSHOT</feature.ovsdb.openstack.version>
30     <feature.groupbasedpolicy.version>0.1.0-SNAPSHOT</feature.groupbasedpolicy.version>
31     <feature.lispflowmapping.version>1.1.11-SNAPSHOT</feature.lispflowmapping.version>
32     <feature.sfc.version>0.0.1-SNAPSHOT</feature.sfc.version>
33     <feature.snbi.version>1.0.0-SNAPSHOT</feature.snbi.version>
34     <feature.ttp.version>0.0.1-SNAPSHOT</feature.ttp.version>
35     <feature.vtn-manager.version>0.2.0-SNAPSHOT</feature.vtn-manager.version>
36     <feature.bgp.version>0.3.1-SNAPSHOT</feature.bgp.version>
37     <feature.packetcable.version>1.1-SNAPSHOT</feature.packetcable.version>
38     <karaf.branding.version>1.0.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.12</checkstyle.version>
42   </properties>
43   <modules>
44     <module>distributions/</module>
45     <module>features/</module>
46   </modules>
47
48   <repositories>
49
50     <!-- OpenDayLight Repo Mirror -->
51     <repository>
52       <id>opendaylight-mirror</id>
53       <name>opendaylight-mirror</name>
54       <url>${nexusproxy}/groups/public/</url>
55       <snapshots>
56           <enabled>false</enabled>
57       </snapshots>
58       <releases>
59           <enabled>true</enabled>
60           <updatePolicy>never</updatePolicy>
61       </releases>
62     </repository>
63     <!-- OpenDayLight Snapshot artifact -->
64     <repository>
65       <id>opendaylight-snapshot</id>
66       <name>opendaylight-snapshot</name>
67       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
68       <snapshots>
69           <enabled>true</enabled>
70       </snapshots>
71       <releases>
72           <enabled>false</enabled>
73       </releases>
74     </repository>
75   </repositories>
76
77   <pluginRepositories>
78     <pluginRepository>
79       <id>central2</id>
80       <name>central2</name>
81       <url>${nexusproxy}/repositories/central2/</url>
82     </pluginRepository>
83     <pluginRepository>
84       <id>opendaylight-snapshot</id>
85       <name>central2</name>
86       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
87     </pluginRepository>
88   </pluginRepositories>
89
90   <distributionManagement>
91     <!-- OpenDayLight Released artifact -->
92     <repository>
93       <id>opendaylight-release</id>
94       <url>${nexusproxy}/repositories/opendaylight.release/</url>
95     </repository>
96     <!-- OpenDayLight Snapshot artifact -->
97     <snapshotRepository>
98       <id>opendaylight-snapshot</id>
99       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
100     </snapshotRepository>
101     <site>
102       <id>${project.artifactId}-site</id>
103       <url>./</url>
104     </site>
105   </distributionManagement>
106   <dependencyManagement>
107       <dependencies>
108         <!-- Karaf basic pieces -->
109         <dependency>
110           <!-- scope is compile so all features (there is only one) are installed
111             into startup.properties and the feature repo itself is not installed -->
112           <groupId>org.apache.karaf.features</groupId>
113           <artifactId>framework</artifactId>
114           <version>${karaf.version}</version>
115           <type>kar</type>
116         </dependency>
117         <!-- scope is runtime so the feature repo is listed in the features
118           service config file, and features may be installed using the
119           karaf-maven-plugin configuration -->
120         <dependency>
121           <groupId>org.apache.karaf.features</groupId>
122           <artifactId>standard</artifactId>
123           <version>${karaf.version}</version>
124           <classifier>features</classifier>
125           <type>xml</type>
126         </dependency>
127
128         <!-- Karaf Branding -->
129         <dependency>
130           <groupId>org.opendaylight.controller</groupId>
131           <artifactId>karaf.branding</artifactId>
132           <version>${karaf.branding.version}</version>
133         </dependency>
134
135         <!-- Integration features -->
136         <dependency>
137           <groupId>org.opendaylight.integration</groupId>
138           <artifactId>features-integration</artifactId>
139           <version>${project.version}</version>
140           <classifier>features</classifier>
141           <type>xml</type>
142         </dependency>
143         <!-- MD-SAL Related Features -->
144         <dependency>
145           <groupId>org.opendaylight.controller</groupId>
146           <artifactId>features-mdsal</artifactId>
147           <version>${feature.mdsal.version}</version>
148           <classifier>features</classifier>
149           <type>xml</type>
150         </dependency>
151         <dependency>
152           <groupId>org.opendaylight.controller</groupId>
153           <artifactId>features-flow</artifactId>
154           <version>${feature.flow.version}</version>
155           <classifier>features</classifier>
156           <type>xml</type>
157         </dependency>
158         <!-- AD-SAL Related Features -->
159         <dependency>
160           <groupId>org.opendaylight.controller</groupId>
161           <artifactId>features-adsal</artifactId>
162           <version>${feature.adsal.version}</version>
163           <classifier>features</classifier>
164           <type>xml</type>
165         </dependency>
166         <dependency>
167           <groupId>org.opendaylight.controller</groupId>
168           <artifactId>features-nsf</artifactId>
169           <version>${feature.nsf.version}</version>
170           <classifier>features</classifier>
171           <type>xml</type>
172         </dependency>
173         <!-- VTN Features -->
174         <dependency>
175           <groupId>org.opendaylight.vtn</groupId>
176           <artifactId>features-vtn-manager</artifactId>
177           <version>${feature.vtn-manager.version}</version>
178           <classifier>features</classifier>
179           <type>xml</type>
180         </dependency>
181
182
183         <!-- GBP Features -->
184         <dependency>
185           <groupId>org.opendaylight.groupbasedpolicy</groupId>
186           <artifactId>features-groupbasedpolicy</artifactId>
187           <version>${feature.groupbasedpolicy.version}</version>
188           <classifier>features</classifier>
189           <type>xml</type>
190         </dependency>
191
192         <!-- SFC features -->
193        <dependency>
194           <groupId>org.opendaylight.sfc</groupId>
195           <artifactId>features-sfc</artifactId>
196           <version>${feature.sfc.version}</version>
197           <classifier>features</classifier>
198           <type>xml</type>
199        </dependency>
200
201         <dependency>
202           <groupId>org.opendaylight.bgpcep</groupId>
203           <artifactId>features-bgp</artifactId>
204           <version>${feature.bgp.version}</version>
205           <classifier>features</classifier>
206           <type>xml</type>
207         </dependency>
208
209         <!-- OVSDB Related Features -->
210         <dependency>
211           <groupId>org.opendaylight.ovsdb</groupId>
212           <artifactId>features-ovsdb</artifactId>
213           <version>${feature.ovsdb.version}</version>
214           <classifier>features</classifier>
215           <type>xml</type>
216         </dependency>
217
218
219         <!-- packetcable Related Features -->
220         <dependency>
221            <groupId>org.opendaylight.packetcable</groupId>
222            <artifactId>features-packetcable</artifactId>
223            <version>${feature.packetcable.version}</version>
224            <classifier>features</classifier>
225           <type>xml</type>
226         </dependency>
227
228         <!-- test to validate features.xml -->
229         <dependency>
230           <groupId>org.opendaylight.yangtools</groupId>
231           <artifactId>features-test</artifactId>
232           <version>${feature.yangtools.version}</version>
233         </dependency>
234       </dependencies>
235   </dependencyManagement>
236   <build>
237     <pluginManagement>
238       <plugins>
239         <plugin>
240           <groupId>org.apache.maven.plugins</groupId>
241           <artifactId>maven-surefire-plugin</artifactId>
242           <version>{$maven.surefire.version}</version>
243         </plugin>
244       </plugins>
245     </pluginManagement>
246   </build>
247 </project>