Release Argon
[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.16.1</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.16.1</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.opendaylight.yangtools</groupId>
31       <artifactId>yang-data-util</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-data-impl</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-dom-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>mdsal-binding-dom-codec-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal</groupId>
47       <artifactId>mdsal-eos-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.guicedee.services</groupId>
51       <artifactId>javax.inject</artifactId>
52       <optional>true</optional>
53     </dependency>
54     <!-- project specific dependencies -->
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>hwvtepsouthbound-api</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>library</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>schema.hardwarevtep</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>utils.mdsal-utils</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>jakarta.annotation</groupId>
77       <artifactId>jakarta.annotation-api</artifactId>
78       <optional>true</optional>
79     </dependency>
80     <dependency>
81       <groupId>org.apache.karaf.shell</groupId>
82       <artifactId>org.apache.karaf.shell.core</artifactId>
83       <scope>provided</scope>
84     </dependency>
85
86     <!-- Testing Dependencies -->
87     <dependency>
88       <groupId>org.opendaylight.mdsal</groupId>
89       <artifactId>mdsal-binding-test-utils</artifactId>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.felix</groupId>
97         <artifactId>maven-bundle-plugin</artifactId>
98         <configuration>
99           <instructions>
100             <Karaf-Commands>org.opendaylight.ovsdb.hwvtepsouthbound.cli*</Karaf-Commands>
101             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
102             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
103           </instructions>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-surefire-plugin</artifactId>
109         <configuration>
110           <forkCount>1</forkCount>
111           <reuseForks>false</reuseForks>
112
113           <!-- FIXME: remove this once we do not muck with static final fields -->
114           <argLine>
115             @{argLine}
116             --add-opens java.base/java.lang=ALL-UNNAMED
117             --add-opens java.base/java.lang.reflect=ALL-UNNAMED
118           </argLine>
119         </configuration>
120       </plugin>
121       <plugin>
122         <groupId>org.apache.karaf.tooling</groupId>
123         <artifactId>karaf-services-maven-plugin</artifactId>
124       </plugin>
125     </plugins>
126   </build>
127
128   <!--
129       Maven Site Configuration
130
131       The following configuration is necessary for maven-site-plugin to
132       correctly identify the correct deployment path for OpenDaylight Maven
133       sites.
134   -->
135   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
136
137   <distributionManagement>
138     <site>
139       <id>opendaylight-site</id>
140       <url>${nexus.site.url}/${project.artifactId}/</url>
141     </site>
142   </distributionManagement>
143 </project>