1f144a0b85646bd2a04a7710ea017c7cfa8a73b4
[affinity.git] / analytics / api / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.affinity</groupId>
8     <artifactId>affinityParent</artifactId>
9     <version>0.4.1-SNAPSHOT</version>
10     <relativePath>../..</relativePath>
11   </parent>
12
13   <groupId>org.opendaylight.affinity</groupId>
14   <artifactId>analytics</artifactId>
15   <version>0.4.0-SNAPSHOT</version>
16
17   <scm>
18     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
19     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
20     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
21   </scm>
22
23   <packaging>bundle</packaging>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30         <version>2.3.6</version>
31         <extensions>true</extensions>
32         <configuration>
33           <instructions>
34             <Import-Package>
35               org.opendaylight.affinity.affinity,
36               org.opendaylight.controller.sal.core,
37             </Import-Package>
38             <Export-Package>
39               org.opendaylight.affinity.analytics
40             </Export-Package>
41           </instructions>
42           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
43         </configuration>
44       </plugin>
45     </plugins>
46   </build>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.affinity</groupId>
50       <artifactId>affinity</artifactId>
51       <version>0.4.0-SNAPSHOT</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal</artifactId>
56       <version>0.5.0-SNAPSHOT</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools.model</groupId>
60       <artifactId>ietf-topology</artifactId>
61       <version>2013.07.12-SNAPSHOT</version>
62     </dependency>
63   </dependencies>
64
65
66 </project>