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