Release Carbon
[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.8.4-Carbon</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-binding-broker-impl</artifactId>
13   <version>1.5.4-Carbon</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.1.4-Carbon</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.2.4-Carbon</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.5.4-Carbon</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.mdsal</groupId>
86       <artifactId>mdsal-binding-dom-adapter</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>yang-data-impl</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.yangtools</groupId>
94       <artifactId>yang-model-util</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.slf4j</groupId>
98       <artifactId>slf4j-api</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.osgi</groupId>
102       <artifactId>org.osgi.core</artifactId>
103       <scope>provided</scope>
104     </dependency>
105     <dependency>
106       <groupId>junit</groupId>
107       <artifactId>junit</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.mockito</groupId>
112       <artifactId>mockito-core</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>com.google.truth</groupId>
117       <artifactId>truth</artifactId>
118       <scope>test</scope>
119     </dependency>
120
121     <dependency>
122       <groupId>org.opendaylight.controller</groupId>
123       <artifactId>sal-test-model</artifactId>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>org.slf4j</groupId>
128       <artifactId>slf4j-simple</artifactId>
129       <scope>test</scope>
130     </dependency>
131   </dependencies>
132
133   <build>
134     <plugins>
135
136       <plugin>
137         <groupId>org.apache.felix</groupId>
138         <artifactId>maven-bundle-plugin</artifactId>
139         <extensions>true</extensions>
140         <configuration>
141           <instructions>
142             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
143             <Export-Package>
144               org.opendaylight.controller.sal.binding.impl,
145               org.opendaylight.controller.md.sal.binding.impl,
146               org.opendaylight.controller.md.sal.binding.compat,
147               org.opendaylight.controller.md.sal.binding.spi,
148               org.opendaylight.controller.sal.binding.codegen.impl,
149             </Export-Package>
150           </instructions>
151         </configuration>
152       </plugin>
153
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-jar-plugin</artifactId>
157         <executions>
158           <execution>
159             <goals>
160               <goal>test-jar</goal>
161             </goals>
162           </execution>
163         </executions>
164       </plugin>
165       <plugin>
166         <groupId>org.apache.maven.plugins</groupId>
167         <artifactId>maven-source-plugin</artifactId>
168         <executions>
169           <execution>
170             <id>attach-sources</id>
171             <phase>verify</phase>
172             <goals>
173               <goal>test-jar</goal>
174             </goals>
175           </execution>
176         </executions>
177       </plugin>
178     </plugins>
179   </build>
180
181   <scm>
182     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
183     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
184     <tag>HEAD</tag>
185     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
186   </scm>
187
188   <!--
189       Maven Site Configuration
190
191       The following configuration is necessary for maven-site-plugin to
192       correctly identify the correct deployment path for OpenDaylight Maven
193       sites.
194   -->
195   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
196
197   <distributionManagement>
198     <site>
199       <id>opendaylight-site</id>
200       <url>${nexus.site.url}/${project.artifactId}/</url>
201     </site>
202   </distributionManagement>
203 </project>