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