d65b3157695180d3aed34f6ad0fdfc6a20b3d7b2
[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.odlparent</groupId>
6     <artifactId>bundle-parent</artifactId>
7     <version>1.9.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-binding-broker-impl</artifactId>
13   <version>1.6.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.yangtools</groupId>
20         <artifactId>yangtools-artifacts</artifactId>
21         <version>1.2.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.mdsal</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>2.3.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>1.6.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>com.google.guava</groupId>
45       <artifactId>guava</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.javassist</groupId>
49       <artifactId>javassist</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-util</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-broker-impl</artifactId>
62       <scope>compile</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-common-impl</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-common-util</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-core-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.mdsal</groupId>
78       <artifactId>mdsal-binding-generator-impl</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.mdsal</groupId>
82       <artifactId>mdsal-binding-dom-codec</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>yang-data-impl</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>yang-model-util</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.slf4j</groupId>
94       <artifactId>slf4j-api</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.osgi</groupId>
98       <artifactId>org.osgi.core</artifactId>
99       <scope>provided</scope>
100     </dependency>
101     <dependency>
102       <groupId>junit</groupId>
103       <artifactId>junit</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.mockito</groupId>
108       <artifactId>mockito-core</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>com.google.truth</groupId>
113       <artifactId>truth</artifactId>
114       <scope>test</scope>
115     </dependency>
116
117     <dependency>
118       <groupId>org.opendaylight.controller</groupId>
119       <artifactId>sal-test-model</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.slf4j</groupId>
124       <artifactId>slf4j-simple</artifactId>
125       <scope>test</scope>
126     </dependency>
127   </dependencies>
128
129   <build>
130     <plugins>
131
132       <plugin>
133         <groupId>org.apache.felix</groupId>
134         <artifactId>maven-bundle-plugin</artifactId>
135         <extensions>true</extensions>
136         <configuration>
137           <instructions>
138             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
139             <Export-Package>
140               org.opendaylight.controller.sal.binding.impl,
141               org.opendaylight.controller.md.sal.binding.impl,
142               org.opendaylight.controller.md.sal.binding.compat,
143               org.opendaylight.controller.md.sal.binding.spi,
144               org.opendaylight.controller.sal.binding.codegen.impl,
145             </Export-Package>
146           </instructions>
147         </configuration>
148       </plugin>
149
150       <plugin>
151         <groupId>org.apache.maven.plugins</groupId>
152         <artifactId>maven-jar-plugin</artifactId>
153         <executions>
154           <execution>
155             <goals>
156               <goal>test-jar</goal>
157             </goals>
158           </execution>
159         </executions>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-source-plugin</artifactId>
164         <executions>
165           <execution>
166             <id>attach-sources</id>
167             <phase>verify</phase>
168             <goals>
169               <goal>test-jar</goal>
170             </goals>
171           </execution>
172         </executions>
173       </plugin>
174     </plugins>
175   </build>
176
177   <scm>
178     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
179     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
180     <tag>HEAD</tag>
181     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
182   </scm>
183
184   <!--
185       Maven Site Configuration
186
187       The following configuration is necessary for maven-site-plugin to
188       correctly identify the correct deployment path for OpenDaylight Maven
189       sites.
190   -->
191   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
192
193   <distributionManagement>
194     <site>
195       <id>opendaylight-site</id>
196       <url>${nexus.site.url}/${project.artifactId}/</url>
197     </site>
198   </distributionManagement>
199 </project>