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