1e53fe20738ec16715c67570f2a48e94c9e60832
[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>sal-parent</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-broker-impl</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.javassist</groupId>
19       <artifactId>javassist</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-binding-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-binding-util</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-broker-impl</artifactId>
32       <scope>compile</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-common-impl</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-core-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-binding-generator-impl</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-binding-dom-codec</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.slf4j</groupId>
64       <artifactId>slf4j-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.osgi</groupId>
68       <artifactId>org.osgi.core</artifactId>
69       <scope>provided</scope>
70     </dependency>
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.mockito</groupId>
78       <artifactId>mockito-all</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>com.google.truth</groupId>
83       <artifactId>truth</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.yangtools</groupId>
88       <artifactId>yang-parser-impl</artifactId>
89       <scope>test</scope>
90     </dependency>
91
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>sal-test-model</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-simple</artifactId>
100       <scope>test</scope>
101     </dependency>
102   </dependencies>
103
104   <build>
105     <plugins>
106
107       <plugin>
108         <groupId>org.apache.felix</groupId>
109         <artifactId>maven-bundle-plugin</artifactId>
110         <extensions>true</extensions>
111         <configuration>
112           <instructions>
113             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
114             <Export-Package>
115                             org.opendaylight.controller.sal.binding.impl,
116                             org.opendaylight.controller.md.sal.binding.impl,
117                             org.opendaylight.controller.md.sal.binding.compat,
118                             org.opendaylight.controller.md.sal.binding.spi,
119                             org.opendaylight.controller.sal.binding.codegen.impl,
120             </Export-Package>
121           </instructions>
122         </configuration>
123       </plugin>
124
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-jar-plugin</artifactId>
128         <executions>
129           <execution>
130             <goals>
131               <goal>test-jar</goal>
132             </goals>
133           </execution>
134         </executions>
135       </plugin>
136       <plugin>
137         <groupId>org.apache.maven.plugins</groupId>
138         <artifactId>maven-source-plugin</artifactId>
139         <executions>
140           <execution>
141             <id>attach-sources</id>
142             <phase>verify</phase>
143             <goals>
144               <goal>test-jar</goal>
145             </goals>
146           </execution>
147         </executions>
148       </plugin>
149       <plugin>
150         <groupId>org.jacoco</groupId>
151         <artifactId>jacoco-maven-plugin</artifactId>
152         <configuration>
153           <includes>
154             <include>org.opendaylight.controller.*</include>
155           </includes>
156         </configuration>
157         <executions>
158           <execution>
159             <id>pre-test</id>
160             <goals>
161               <goal>prepare-agent</goal>
162             </goals>
163           </execution>
164           <execution>
165             <id>post-test</id>
166             <goals>
167               <goal>report</goal>
168             </goals>
169             <phase>test</phase>
170           </execution>
171         </executions>
172       </plugin>
173     </plugins>
174   </build>
175   <scm>
176     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
177     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
178     <tag>HEAD</tag>
179     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
180   </scm>
181 </project>