Clean up unused dependencies
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2014, 2016 Cisco Systems, 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" 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">
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.13.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>hwvtepsouthbound-impl</artifactId>
22   <version>1.13.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.osgi</groupId>
31       <artifactId>osgi.core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-data-util</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>yang-data-impl</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>mdsal-dom-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal</groupId>
47       <artifactId>mdsal-binding-dom-codec-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal</groupId>
51       <artifactId>mdsal-eos-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>com.guicedee.services</groupId>
55       <artifactId>javax.inject</artifactId>
56       <optional>true</optional>
57     </dependency>
58     <!-- project specific dependencies -->
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>hwvtepsouthbound-api</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>library</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69       <dependency>
70           <groupId>org.apache.karaf.shell</groupId>
71           <artifactId>org.apache.karaf.shell.console</artifactId>
72           <scope>provided</scope>
73       </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>schema.hardwarevtep</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>utils.mdsal-utils</artifactId>
82       <version>${project.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>javax.annotation</groupId>
86       <artifactId>javax.annotation-api</artifactId>
87       <optional>true</optional>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.serviceutils</groupId>
91       <artifactId>upgrade</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.karaf.shell</groupId>
95       <artifactId>org.apache.karaf.shell.core</artifactId>
96     </dependency>
97
98     <!-- Testing Dependencies -->
99     <dependency>
100       <groupId>org.opendaylight.mdsal</groupId>
101       <artifactId>mdsal-binding-test-utils</artifactId>
102     </dependency>
103   </dependencies>
104
105   <build>
106     <plugins>
107       <plugin>
108         <groupId>org.apache.felix</groupId>
109         <artifactId>maven-bundle-plugin</artifactId>
110         <configuration>
111           <instructions>
112             <Karaf-Commands>org.opendaylight.ovsdb.hwvtepsouthbound.cli*</Karaf-Commands>
113             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
114             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
115           </instructions>
116         </configuration>
117       </plugin>
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-surefire-plugin</artifactId>
121         <configuration>
122           <forkCount>1</forkCount>
123           <reuseForks>false</reuseForks>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128
129   <!--
130       Maven Site Configuration
131
132       The following configuration is necessary for maven-site-plugin to
133       correctly identify the correct deployment path for OpenDaylight Maven
134       sites.
135   -->
136   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
137
138   <distributionManagement>
139     <site>
140       <id>opendaylight-site</id>
141       <url>${nexus.site.url}/${project.artifactId}/</url>
142     </site>
143   </distributionManagement>
144 </project>