Bump upstreams for Silicon
[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.12.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.12.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   <properties>
29     <!-- FIXME: Remove this -->
30     <odlparent.modernizer.enforce>false</odlparent.modernizer.enforce>
31   </properties>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>org.osgi.core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal</groupId>
40       <artifactId>mdsal-dom-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-binding-dom-codec</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-eos-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>javax.inject</groupId>
52       <artifactId>javax.inject</artifactId>
53       <scope>provided</scope>
54       <optional>true</optional>
55     </dependency>
56     <dependency>
57       <groupId>org.apache.aries.blueprint</groupId>
58       <artifactId>blueprint-maven-plugin-annotation</artifactId>
59       <optional>true</optional>
60     </dependency>
61     <!-- project specific dependencies -->
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>hwvtepsouthbound-api</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>library</artifactId>
70       <version>${project.version}</version>
71     </dependency>
72       <dependency>
73           <groupId>org.apache.karaf.shell</groupId>
74           <artifactId>org.apache.karaf.shell.console</artifactId>
75           <scope>provided</scope>
76       </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>schema.hardwarevtep</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>utils.mdsal-utils</artifactId>
85       <version>${project.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>javax.annotation</groupId>
89       <artifactId>javax.annotation-api</artifactId>
90       <optional>true</optional>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.serviceutils</groupId>
94       <artifactId>upgrade</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.mdsal</groupId>
98       <artifactId>mdsal-binding-spi</artifactId>
99     </dependency>
100     <!-- Testing Dependencies -->
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>slf4j-simple</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal</groupId>
108       <artifactId>mdsal-binding-test-utils</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.powermock</groupId>
112       <artifactId>powermock-reflect</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.apache.karaf.shell</groupId>
117       <artifactId>org.apache.karaf.shell.core</artifactId>
118     </dependency>
119   </dependencies>
120
121   <build>
122     <plugins>
123       <plugin>
124         <groupId>org.apache.aries.blueprint</groupId>
125         <artifactId>blueprint-maven-plugin</artifactId>
126         <configuration>
127           <scanPaths>org.opendaylight.ovsdb.hwvtepsouthbound</scanPaths>
128         </configuration>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.felix</groupId>
132         <artifactId>maven-bundle-plugin</artifactId>
133         <configuration>
134           <instructions>
135             <Karaf-Commands>org.opendaylight.ovsdb.hwvtepsouthbound.cli*</Karaf-Commands>
136             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
137             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
138           </instructions>
139         </configuration>
140       </plugin>
141       <plugin>
142         <groupId>org.apache.maven.plugins</groupId>
143         <artifactId>maven-surefire-plugin</artifactId>
144         <configuration>
145           <forkCount>1</forkCount>
146           <reuseForks>false</reuseForks>
147         </configuration>
148       </plugin>
149       <plugin>
150         <groupId>org.codehaus.mojo</groupId>
151         <artifactId>build-helper-maven-plugin</artifactId>
152         <executions>
153           <execution>
154             <id>attach-artifacts</id>
155             <goals>
156               <goal>attach-artifact</goal>
157             </goals>
158             <phase>package</phase>
159             <configuration>
160               <artifacts>
161                 <artifact>
162                   <file>${project.build.directory}/classes/initial/hwvtepsouthbound.cfg</file>
163                   <type>cfg</type>
164                   <classifier>config</classifier>
165                 </artifact>
166               </artifacts>
167             </configuration>
168           </execution>
169         </executions>
170       </plugin>
171     </plugins>
172   </build>
173
174   <!--
175       Maven Site Configuration
176
177       The following configuration is necessary for maven-site-plugin to
178       correctly identify the correct deployment path for OpenDaylight Maven
179       sites.
180   -->
181   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
182
183   <distributionManagement>
184     <site>
185       <id>opendaylight-site</id>
186       <url>${nexus.site.url}/${project.artifactId}/</url>
187     </site>
188   </distributionManagement>
189 </project>