bc5b4bfddc30eb4b3309f7bcaf18f97c47e78059
[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>org.opendaylight.yangtools</groupId>
83       <artifactId>yang-parser-impl</artifactId>
84       <scope>test</scope>
85     </dependency>
86
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal-test-model</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.slf4j</groupId>
94       <artifactId>slf4j-simple</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101
102       <plugin>
103         <groupId>org.apache.felix</groupId>
104         <artifactId>maven-bundle-plugin</artifactId>
105         <extensions>true</extensions>
106         <configuration>
107           <instructions>
108             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
109             <Export-Package>
110                             org.opendaylight.controller.sal.binding.impl,
111                             org.opendaylight.controller.md.sal.binding.impl,
112                             org.opendaylight.controller.md.sal.binding.compat,
113                             org.opendaylight.controller.md.sal.binding.spi,
114                             org.opendaylight.controller.sal.binding.codegen.impl,
115             </Export-Package>
116           </instructions>
117         </configuration>
118       </plugin>
119
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-jar-plugin</artifactId>
123         <executions>
124           <execution>
125             <goals>
126               <goal>test-jar</goal>
127             </goals>
128           </execution>
129         </executions>
130       </plugin>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-source-plugin</artifactId>
134         <executions>
135           <execution>
136             <id>attach-sources</id>
137             <phase>verify</phase>
138             <goals>
139               <goal>test-jar</goal>
140             </goals>
141           </execution>
142         </executions>
143       </plugin>
144       <plugin>
145         <groupId>org.jacoco</groupId>
146         <artifactId>jacoco-maven-plugin</artifactId>
147         <configuration>
148           <includes>
149             <include>org.opendaylight.controller.*</include>
150           </includes>
151         </configuration>
152         <executions>
153           <execution>
154             <id>pre-test</id>
155             <goals>
156               <goal>prepare-agent</goal>
157             </goals>
158           </execution>
159           <execution>
160             <id>post-test</id>
161             <goals>
162               <goal>report</goal>
163             </goals>
164             <phase>test</phase>
165           </execution>
166         </executions>
167       </plugin>
168     </plugins>
169   </build>
170   <scm>
171     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
172     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
173     <tag>HEAD</tag>
174     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
175   </scm>
176 </project>