Add missing <name> fields for pom.xml files
[ovsdb.git] / utils / ovsdb-it-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Red Hat, 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.7.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.ovsdb-it-utils</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: ovsdb :: ${project.artifactId}</name>
28
29   <scm>
30     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
31     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
32     <tag>HEAD</tag>
33     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
34   </scm>
35
36   <dependencies>
37       <dependency>
38           <groupId>org.opendaylight.controller</groupId>
39           <artifactId>sal-binding-api</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>${project.groupId}</groupId>
43           <artifactId>southbound-api</artifactId>
44           <version>${project.version}</version>
45       </dependency>
46       <dependency>
47           <groupId>${project.groupId}</groupId>
48           <artifactId>utils.mdsal-utils</artifactId>
49           <version>${project.version}</version>
50       </dependency>
51       <dependency>
52           <groupId>${project.groupId}</groupId>
53           <artifactId>utils.southbound-utils</artifactId>
54           <version>${project.version}</version>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.mdsal.model</groupId>
58           <artifactId>ietf-inet-types-2013-07-15</artifactId>
59       </dependency>
60       <dependency>
61           <groupId>org.opendaylight.mdsal.model</groupId>
62           <artifactId>ietf-topology</artifactId>
63       </dependency>
64       <dependency>
65           <groupId>junit</groupId>
66           <artifactId>junit</artifactId>
67           <scope>compile</scope>
68       </dependency>
69       <dependency>
70           <groupId>com.esotericsoftware.yamlbeans</groupId>
71           <artifactId>yamlbeans</artifactId>
72           <version>1.09</version>
73       </dependency>
74
75
76     <dependency>
77         <groupId>org.ops4j.pax.exam</groupId>
78         <artifactId>pax-exam-container-karaf</artifactId>
79         <scope>compile</scope>
80     </dependency>
81     <dependency>
82         <groupId>org.ops4j.pax.exam</groupId>
83         <artifactId>pax-exam-junit4</artifactId>
84         <scope>compile</scope>
85     </dependency>
86     <dependency>
87         <groupId>org.ops4j.pax.exam</groupId>
88         <artifactId>pax-exam</artifactId>
89         <scope>compile</scope>
90     </dependency>
91     <dependency>
92         <groupId>org.ops4j.pax.url</groupId>
93         <artifactId>pax-url-aether</artifactId>
94         <scope>compile</scope>
95     </dependency>
96     <dependency>
97         <groupId>javax.inject</groupId>
98         <artifactId>javax.inject</artifactId>
99         <version>1</version>
100         <scope>compile</scope>
101     </dependency>
102     <dependency>
103         <groupId>org.apache.karaf.features</groupId>
104         <artifactId>org.apache.karaf.features.core</artifactId>
105         <version>${karaf.version}</version>
106         <scope>provided</scope>
107     </dependency>
108     <dependency>
109         <groupId>org.osgi</groupId>
110         <artifactId>org.osgi.core</artifactId>
111         <scope>compile</scope>
112     </dependency>
113
114   </dependencies>
115
116     <!--
117         Maven Site Configuration
118
119         The following configuration is necessary for maven-site-plugin to
120         correctly identify the correct deployment path for OpenDaylight Maven
121         sites.
122     -->
123     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
124
125     <distributionManagement>
126         <site>
127             <id>opendaylight-site</id>
128             <url>${nexus.site.url}/${project.artifactId}/</url>
129         </site>
130     </distributionManagement>
131   <build>
132       <resources>
133           <resource>
134               <directory>src/main/resources/docker-compose-files</directory>
135               <targetPath>META-INF/docker-compose-files</targetPath>
136               <includes>
137                   <include>*.yml</include>
138               </includes>
139           </resource>
140       </resources>
141     <plugins>
142       <plugin>
143         <groupId>org.apache.felix</groupId>
144         <artifactId>maven-bundle-plugin</artifactId>
145         <extensions>true</extensions>
146         <configuration>
147           <instructions>
148             <Embed-Dependency>
149               yamlbeans;groupId=com.esotericsoftware.yamlbeans;type=!pom;inline=false
150             </Embed-Dependency>
151             <Embed-Transitive>true</Embed-Transitive>
152           </instructions>
153         </configuration>
154       </plugin>
155     </plugins>
156   </build>
157 </project>