Net-virt-sfc Data Change Listener code first pass.
[netvirt.git] / openstack / net-virt-sfc / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.ovsdb</groupId>
23   <artifactId>openstack.net-virt-sfc-impl</artifactId>
24   <version>1.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <sonar.jacoco.itReportPath>../it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
29     <utils.version>1.2.0-SNAPSHOT</utils.version>
30   </properties>
31
32   <dependencies>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>openstack.net-virt-sfc-api</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38
39     <!-- Testing Dependencies -->
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-all</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.codehaus.sonar-plugins.java</groupId>
52       <artifactId>sonar-jacoco-listeners</artifactId>
53       <version>${sonar-jacoco-listeners.version}</version>
54       <scope>test</scope>
55     </dependency>
56
57     <!-- MDSAL Infra Dependencies -->
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-binding-broker-impl</artifactId>
61       <scope>test</scope>
62       <type>test-jar</type>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-binding-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-binding-config</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>yang-common</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-binding-config</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>config-api</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.ovsdb</groupId>
86       <artifactId>utils.mdsal-utils</artifactId>
87       <version>${utils.version}</version>
88       <type>bundle</type>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal-binding-broker-impl</artifactId>
93       <scope>test</scope>
94     </dependency>
95   </dependencies>
96
97   <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-surefire-plugin</artifactId>
102         <configuration>
103           <properties>
104             <property>
105               <name>listener</name>
106               <value>org.sonar.java.jacoco.JUnitListener</value>
107             </property>
108           </properties>
109         </configuration>
110       </plugin>
111       <plugin>
112         <groupId>org.jacoco</groupId>
113         <artifactId>jacoco-maven-plugin</artifactId>
114       </plugin>
115     </plugins>
116   </build>
117 </project>