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