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