1f834a1ec12bcc601f09df6c32ded4587f0f9ada
[controller.git] / opendaylight / md-sal / sal-binding-broker / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>1.11.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-binding-broker-impl</artifactId>
13   <version>1.11.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-binding-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-binding-util</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-broker-impl</artifactId>
28       <scope>compile</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-common-impl</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-common-util</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-core-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-binding-generator-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-binding-dom-codec</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-binding-dom-adapter</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>yang-data-impl</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-model-util</artifactId>
61     </dependency>
62
63     <dependency>
64       <!-- Required because BindingToNormalizedNodeCodec extends an annotated class and annotation
65            processors have a hard time with that. -->
66       <groupId>javax.inject</groupId>
67       <artifactId>javax.inject</artifactId>
68       <scope>provided</scope>
69       <optional>true</optional>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-inmemory-datastore</artifactId>
75       <!-- FIXME: this should be scope=test
76       <scope>test</scope-->
77     </dependency>
78     <dependency>
79       <groupId>org.slf4j</groupId>
80       <artifactId>slf4j-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.osgi</groupId>
84       <artifactId>org.osgi.core</artifactId>
85       <scope>provided</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.mockito</groupId>
89       <artifactId>mockito-core</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>com.google.truth</groupId>
94       <artifactId>truth</artifactId>
95       <scope>test</scope>
96     </dependency>
97
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-test-model</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.slf4j</groupId>
105       <artifactId>slf4j-simple</artifactId>
106       <scope>test</scope>
107     </dependency>
108   </dependencies>
109
110   <build>
111     <plugins>
112
113       <plugin>
114         <groupId>org.apache.felix</groupId>
115         <artifactId>maven-bundle-plugin</artifactId>
116         <extensions>true</extensions>
117         <configuration>
118           <instructions>
119             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
120             <Export-Package>
121               org.opendaylight.controller.sal.binding.impl,
122               org.opendaylight.controller.md.sal.binding.impl,
123               org.opendaylight.controller.md.sal.binding.compat,
124               org.opendaylight.controller.md.sal.binding.spi,
125               org.opendaylight.controller.sal.binding.codegen.impl,
126             </Export-Package>
127           </instructions>
128         </configuration>
129       </plugin>
130
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-jar-plugin</artifactId>
134         <executions>
135           <execution>
136             <goals>
137               <goal>test-jar</goal>
138             </goals>
139           </execution>
140         </executions>
141       </plugin>
142       <plugin>
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-source-plugin</artifactId>
145         <executions>
146           <execution>
147             <id>attach-sources</id>
148             <phase>verify</phase>
149             <goals>
150               <goal>test-jar</goal>
151             </goals>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157
158   <scm>
159     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
160     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
161     <tag>HEAD</tag>
162     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
163   </scm>
164
165 </project>