Create a parent pom for md-sal sub-projects
[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.8.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.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
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.mdsal</groupId>
56       <artifactId>mdsal-binding-dom-adapter</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-data-impl</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>yang-model-util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.slf4j</groupId>
68       <artifactId>slf4j-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.osgi</groupId>
72       <artifactId>org.osgi.core</artifactId>
73       <scope>provided</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-core</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>com.google.truth</groupId>
82       <artifactId>truth</artifactId>
83       <scope>test</scope>
84     </dependency>
85
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal-test-model</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-simple</artifactId>
94       <scope>test</scope>
95     </dependency>
96   </dependencies>
97
98   <build>
99     <plugins>
100
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
108             <Export-Package>
109               org.opendaylight.controller.sal.binding.impl,
110               org.opendaylight.controller.md.sal.binding.impl,
111               org.opendaylight.controller.md.sal.binding.compat,
112               org.opendaylight.controller.md.sal.binding.spi,
113               org.opendaylight.controller.sal.binding.codegen.impl,
114             </Export-Package>
115           </instructions>
116         </configuration>
117       </plugin>
118
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-jar-plugin</artifactId>
122         <executions>
123           <execution>
124             <goals>
125               <goal>test-jar</goal>
126             </goals>
127           </execution>
128         </executions>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-source-plugin</artifactId>
133         <executions>
134           <execution>
135             <id>attach-sources</id>
136             <phase>verify</phase>
137             <goals>
138               <goal>test-jar</goal>
139             </goals>
140           </execution>
141         </executions>
142       </plugin>
143     </plugins>
144   </build>
145
146   <scm>
147     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
148     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
149     <tag>HEAD</tag>
150     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
151   </scm>
152
153 </project>