Convert to mdsal EntityOwnershipService APIs
[ovsdb.git] / southbound / southbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>ovsdb-binding-parent</artifactId>
14     <version>1.7.0-SNAPSHOT</version>
15     <relativePath>../../commons/binding-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>southbound-impl</artifactId>
21   <version>1.7.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: ovsdb :: ${project.artifactId}</name>
26   <properties>
27     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal-core-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal</groupId>
37       <artifactId>mdsal-binding-dom-codec</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-eos-binding-api</artifactId>
42     </dependency>
43     <!-- project specific dependencies -->
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>southbound-api</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>library</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>schema.openvswitch</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.ovsdb</groupId>
61       <artifactId>utils.yang-utils</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <!-- external dependencies -->
69     <dependency>
70       <groupId>org.sonarsource.java</groupId>
71       <artifactId>sonar-jacoco-listeners</artifactId>
72       <version>${sonar-jacoco-listeners.version}</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.slf4j</groupId>
77       <artifactId>slf4j-simple</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <!-- testing dependencies -->
81     <dependency>
82       <groupId>junit</groupId>
83       <artifactId>junit</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.powermock</groupId>
88       <artifactId>powermock-api-mockito</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.powermock</groupId>
93       <artifactId>powermock-module-junit4</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>sal-binding-broker-impl</artifactId>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller</groupId>
103       <artifactId>sal-binding-broker-impl</artifactId>
104       <type>test-jar</type>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.ovsdb</groupId>
109       <artifactId>utils.southbound-utils</artifactId>
110       <version>${project.version}</version>
111       <scope>test</scope>
112     </dependency>
113   </dependencies>
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <configuration>
120           <instructions>
121             <Export-Package>
122               org.opendaylight.ovsdb.southbound,
123               org.opendaylight.ovsdb.southbound.*,
124               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
125           </instructions>
126         </configuration>
127       </plugin>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-surefire-plugin</artifactId>
131         <configuration>
132           <properties>
133             <property>
134               <name>listener</name>
135               <value>org.sonar.java.jacoco.JUnitListener</value>
136             </property>
137           </properties>
138         </configuration>
139       </plugin>
140       <plugin>
141         <groupId>org.codehaus.mojo</groupId>
142         <artifactId>build-helper-maven-plugin</artifactId>
143         <executions>
144           <execution>
145             <id>attach-artifacts</id>
146             <goals>
147               <goal>attach-artifact</goal>
148             </goals>
149             <phase>package</phase>
150             <configuration>
151               <artifacts>
152                 <artifact>
153                   <file>${project.build.directory}/classes/initial/southbound.cfg</file>
154                   <type>cfg</type>
155                   <classifier>config</classifier>
156                 </artifact>
157               </artifacts>
158             </configuration>
159           </execution>
160         </executions>
161       </plugin>
162     </plugins>
163   </build>
164
165   <!--
166       Maven Site Configuration
167
168       The following configuration is necessary for maven-site-plugin to
169       correctly identify the correct deployment path for OpenDaylight Maven
170       sites.
171   -->
172   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
173
174   <distributionManagement>
175     <site>
176       <id>opendaylight-site</id>
177       <url>${nexus.site.url}/${project.artifactId}/</url>
178     </site>
179   </distributionManagement>
180 </project>