4b0af9d4493ec11fbc93e47d02c2d6b833631572
[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     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-inmemory-datastore</artifactId>
65       <!-- FIXME: this should be scope=test
66       <scope>test</scope-->
67     </dependency>
68     <dependency>
69       <groupId>org.slf4j</groupId>
70       <artifactId>slf4j-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.osgi</groupId>
74       <artifactId>org.osgi.core</artifactId>
75       <scope>provided</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.mockito</groupId>
79       <artifactId>mockito-core</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>com.google.truth</groupId>
84       <artifactId>truth</artifactId>
85       <scope>test</scope>
86     </dependency>
87
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal-test-model</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.slf4j</groupId>
95       <artifactId>slf4j-simple</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99
100   <build>
101     <plugins>
102
103       <plugin>
104         <groupId>org.apache.felix</groupId>
105         <artifactId>maven-bundle-plugin</artifactId>
106         <extensions>true</extensions>
107         <configuration>
108           <instructions>
109             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
110             <Export-Package>
111               org.opendaylight.controller.sal.binding.impl,
112               org.opendaylight.controller.md.sal.binding.impl,
113               org.opendaylight.controller.md.sal.binding.compat,
114               org.opendaylight.controller.md.sal.binding.spi,
115               org.opendaylight.controller.sal.binding.codegen.impl,
116             </Export-Package>
117           </instructions>
118         </configuration>
119       </plugin>
120
121       <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-jar-plugin</artifactId>
124         <executions>
125           <execution>
126             <goals>
127               <goal>test-jar</goal>
128             </goals>
129           </execution>
130         </executions>
131       </plugin>
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-source-plugin</artifactId>
135         <executions>
136           <execution>
137             <id>attach-sources</id>
138             <phase>verify</phase>
139             <goals>
140               <goal>test-jar</goal>
141             </goals>
142           </execution>
143         </executions>
144       </plugin>
145     </plugins>
146   </build>
147
148   <scm>
149     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
150     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
151     <tag>HEAD</tag>
152     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
153   </scm>
154
155 </project>