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