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