Merge "Fixed Group and meter id bugs"
[controller.git] / opendaylight / md-sal / sal-binding-dom-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-dom-it</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15     </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.eclipse.xtend</groupId>
21                 <artifactId>xtend-maven-plugin</artifactId>
22             </plugin>
23             <plugin>
24                 <artifactId>maven-clean-plugin</artifactId>
25             </plugin>
26             <plugin>
27                 <groupId>org.jacoco</groupId>
28                 <artifactId>jacoco-maven-plugin</artifactId>
29                 <configuration>
30                     <includes>org.opendaylight.controller.*</includes>
31                 </configuration>
32                 <executions>
33                     <execution>
34                         <id>pre-test</id>
35                         <goals>
36                             <goal>prepare-agent</goal>
37                         </goals>
38                     </execution>
39                     <execution>
40                         <id>post-test</id>
41                         <phase>test</phase>
42                         <goals>
43                             <goal>report</goal>
44                         </goals>
45                     </execution>
46                 </executions>
47             </plugin>
48         </plugins>
49     </build>
50
51     <dependencies>
52     <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-broker-impl</artifactId>
55             <version>1.0-SNAPSHOT</version>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-binding-broker-impl</artifactId>
61             <version>1.0-SNAPSHOT</version>
62             <type>test-jar</type>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller.model</groupId>
67             <artifactId>model-flow-service</artifactId>
68             <version>1.0-SNAPSHOT</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller.model</groupId>
73             <artifactId>model-flow-management</artifactId>
74             <version>1.0-SNAPSHOT</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80         </dependency>
81     </dependencies>
82 </project>