Initial commit of nfchain.
[affinity.git] / nfchain / impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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
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>nfchain-impl</artifactId>
15     <version>0.4.0-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17   
18     <scm>
19         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
20         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
21         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
22     </scm>
23
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                         <Bundle-Activator>org.opendaylight.affinity.nfchain.provider.Activator</Bundle-Activator>
35                     </instructions>
36                 </configuration>
37             </plugin>
38         </plugins>
39     </build>
40
41     <dependencies>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>nfchain</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <dependency>
48           <groupId>org.opendaylight.controller</groupId>
49           <artifactId>hosttracker</artifactId>
50           <version>0.4.1-SNAPSHOT</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-api</artifactId>
55             <version>1.0-SNAPSHOT</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-common-util</artifactId>
60             <version>1.0-SNAPSHOT</version>
61         </dependency>
62     </dependencies>
63 </project>