530b460dc90a6361461108fb21be08df288315b6
[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.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <version>1.5.0-SNAPSHOT</version>
13   <artifactId>sal-binding-broker-impl</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.controller</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>1.5.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.2.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.yangtools</groupId>
34         <artifactId>yangtools-artifacts</artifactId>
35         <version>1.1.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-all</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     <dependency>
117       <groupId>org.opendaylight.yangtools</groupId>
118       <artifactId>yang-parser-impl</artifactId>
119       <scope>test</scope>
120     </dependency>
121
122     <dependency>
123       <groupId>org.opendaylight.controller</groupId>
124       <artifactId>sal-test-model</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.slf4j</groupId>
129       <artifactId>slf4j-simple</artifactId>
130       <scope>test</scope>
131     </dependency>
132   </dependencies>
133
134   <build>
135     <plugins>
136
137       <plugin>
138         <groupId>org.apache.felix</groupId>
139         <artifactId>maven-bundle-plugin</artifactId>
140         <extensions>true</extensions>
141         <configuration>
142           <instructions>
143             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
144             <Export-Package>
145                             org.opendaylight.controller.sal.binding.impl,
146                             org.opendaylight.controller.md.sal.binding.impl,
147                             org.opendaylight.controller.md.sal.binding.compat,
148                             org.opendaylight.controller.md.sal.binding.spi,
149                             org.opendaylight.controller.sal.binding.codegen.impl,
150             </Export-Package>
151           </instructions>
152         </configuration>
153       </plugin>
154
155       <plugin>
156         <groupId>org.apache.maven.plugins</groupId>
157         <artifactId>maven-jar-plugin</artifactId>
158         <executions>
159           <execution>
160             <goals>
161               <goal>test-jar</goal>
162             </goals>
163           </execution>
164         </executions>
165       </plugin>
166       <plugin>
167         <groupId>org.apache.maven.plugins</groupId>
168         <artifactId>maven-source-plugin</artifactId>
169         <executions>
170           <execution>
171             <id>attach-sources</id>
172             <phase>verify</phase>
173             <goals>
174               <goal>test-jar</goal>
175             </goals>
176           </execution>
177         </executions>
178       </plugin>
179     </plugins>
180   </build>
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 </project>