Merge "Bug 618 - convert xtend to java in md-sal/inventory-manager"
[controller.git] / opendaylight / md-sal / sal-binding-dom-it / 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.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-dom-it</artifactId>
10   <packaging>jar</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>junit</groupId>
15       <artifactId>junit</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.opendaylight.yangtools</groupId>
19       <artifactId>yang-binding</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-binding-broker-impl</artifactId>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-binding-broker-impl</artifactId>
29       <type>test-jar</type>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-flow-management</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller.model</groupId>
39       <artifactId>model-flow-service</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.ops4j.pax.exam</groupId>
44       <artifactId>pax-exam-container-native</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-simple</artifactId>
51       <version>1.7.2</version>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.jacoco</groupId>
59         <artifactId>jacoco-maven-plugin</artifactId>
60         <configuration>
61           <includes>
62             <include>org.opendaylight.controller.*</include>
63           </includes>
64         </configuration>
65         <executions>
66           <execution>
67             <id>pre-test</id>
68             <goals>
69               <goal>prepare-agent</goal>
70             </goals>
71           </execution>
72           <execution>
73             <id>post-test</id>
74             <goals>
75               <goal>report</goal>
76             </goals>
77             <phase>test</phase>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>org.opendaylight.yangtools</groupId>
83         <artifactId>yang-maven-plugin</artifactId>
84         <executions>
85           <execution>
86             <goals>
87               <goal>generate-sources</goal>
88             </goals>
89             <configuration>
90               <codeGenerators>
91                 <generator>
92                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
93                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
94                 </generator>
95               </codeGenerators>
96               <inspectDependencies>true</inspectDependencies>
97             </configuration>
98           </execution>
99         </executions>
100       </plugin>
101     </plugins>
102   </build>
103   <scm>
104     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
105     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
106     <tag>HEAD</tag>
107     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
108   </scm>
109 </project>