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