Updated RESTCONF implementation
[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                 <extensions>true</extensions>
23                 <configuration>
24                     <instructions>
25                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
26                         <Bundle-Activator>org.opendaylight.controller.sal.binding.impl.BrokerActivator</Bundle-Activator>
27                         <Private-Package>
28                             org.opendaylight.controller.sal.binding.impl,
29                             org.opendaylight.controller.sal.binding.impl.*,
30                             org.opendaylight.controller.sal.binding.codegen.*,
31                             org.eclipse.xtend2.lib,
32                             org.eclipse.xtend.lib,
33                             org.eclipse.xtext.xbase.*
34                         </Private-Package>
35                     </instructions>
36                 </configuration>
37             </plugin>
38             <plugin>
39                 <groupId>org.eclipse.xtend</groupId>
40                 <artifactId>xtend-maven-plugin</artifactId>
41             </plugin>
42             <plugin>
43                 <artifactId>maven-clean-plugin</artifactId>
44             </plugin>
45         </plugins>
46     </build>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>sal-common-util</artifactId>
52             <version>1.0-SNAPSHOT</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-common-impl</artifactId>
57             <version>1.0-SNAPSHOT</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-binding-api</artifactId>
62             <version>1.0-SNAPSHOT</version>
63         </dependency>
64         <dependency>
65             <groupId>org.slf4j</groupId>
66             <artifactId>slf4j-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.osgi</groupId>
70             <artifactId>org.osgi.core</artifactId>
71             <version>${osgi.core.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>com.google.guava</groupId>
75             <artifactId>guava</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.reflections</groupId>
79             <artifactId>reflections</artifactId>
80             <version>0.9.9-RC1</version>
81         </dependency>
82         <dependency>
83             <groupId>org.javassist</groupId>
84             <artifactId>javassist</artifactId>
85             <version>3.17.1-GA</version>
86         </dependency>
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.mockito</groupId>
94             <artifactId>mockito-all</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.eclipse.xtend</groupId>
99             <artifactId>org.eclipse.xtend.lib</artifactId>
100         </dependency>
101         <dependency>
102           <groupId>junit</groupId>
103           <artifactId>junit</artifactId>
104         </dependency>
105     </dependencies>
106 </project>