Update to MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / 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     <parent>
5         <groupId>org.opendaylight.controller</groupId>
6         <artifactId>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-broker-impl</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15     </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.felix</groupId>
21                 <artifactId>maven-bundle-plugin</artifactId>
22                 <version>${bundle.plugin.version}</version>
23                 <extensions>true</extensions>
24                 <configuration>
25                     <instructions>
26                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
27                         <Bundle-Activator>org.opendaylight.controller.sal.binding.impl.BrokerActivator</Bundle-Activator>
28                         <Private-Package>
29                             org.opendaylight.controller.sal.binding.impl,
30                             org.opendaylight.controller.sal.binding.impl.*,
31                             org.opendaylight.controller.sal.binding.codegen.*,
32                             org.eclipse.xtend2.lib,
33                             org.eclipse.xtend.lib,
34                             org.eclipse.xtext.xbase.*
35                         </Private-Package>
36                     </instructions>
37                 </configuration>
38             </plugin>
39             <plugin>
40                 <groupId>org.eclipse.xtend</groupId>
41                 <artifactId>xtend-maven-plugin</artifactId>
42             </plugin>
43             <plugin>
44                 <artifactId>maven-clean-plugin</artifactId>
45             </plugin>
46         </plugins>
47     </build>
48
49     <dependencies>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal-common-util</artifactId>
53             <version>1.0-SNAPSHOT</version>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>sal-common-impl</artifactId>
58             <version>1.0-SNAPSHOT</version>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-binding-api</artifactId>
63             <version>1.0-SNAPSHOT</version>
64         </dependency>
65         <dependency>
66             <groupId>org.slf4j</groupId>
67             <artifactId>slf4j-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>org.osgi.core</artifactId>
72             <version>${osgi.core.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>com.google.guava</groupId>
76             <artifactId>guava</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.reflections</groupId>
80             <artifactId>reflections</artifactId>
81             <version>0.9.9-RC1</version>
82         </dependency>
83         <dependency>
84             <groupId>org.javassist</groupId>
85             <artifactId>javassist</artifactId>
86             <version>3.17.1-GA</version>
87         </dependency>
88         <dependency>
89             <groupId>junit</groupId>
90             <artifactId>junit</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-all</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.eclipse.xtend</groupId>
100             <artifactId>org.eclipse.xtend.lib</artifactId>
101         </dependency>
102         <dependency>
103           <groupId>junit</groupId>
104           <artifactId>junit</artifactId>
105         </dependency>
106     </dependencies>
107 </project>