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