Add missing <name> fields for pom.xml files
[neutron.git] / model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014, 2016 Cisco Systems, 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.10.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.neutron</groupId>
21   <artifactId>model</artifactId>
22   <version>0.8.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 :: neutron :: ${project.artifactId}</name>
27   <properties>
28     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.mdsal.model</groupId>
35         <artifactId>mdsal-model-artifacts</artifactId>
36         <version>0.10.0-SNAPSHOT</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>yang-binding</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-common</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.mdsal.model</groupId>
54       <artifactId>ietf-inet-types-2013-07-15</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.mdsal.model</groupId>
58       <artifactId>ietf-yang-types-20130715</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.mdsal.model</groupId>
62       <artifactId>yang-ext</artifactId>
63     </dependency>
64   </dependencies>
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70         <extensions>true</extensions>
71         <configuration>
72           <instructions>
73             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
74             <Import-Package>*</Import-Package>
75           </instructions>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-compiler-plugin</artifactId>
81         <inherited>true</inherited>
82         <configuration>
83           <compilerArgs>
84             <arg>-Xlint:unchecked</arg>
85             <arg>-Xlint:deprecation</arg>
86           </compilerArgs>
87         </configuration>
88       </plugin>
89     </plugins>
90   </build>
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
94     <tag>HEAD</tag>
95     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
96   </scm>
97
98   <!--
99       Maven Site Configuration
100
101       The following configuration is necessary for maven-site-plugin to
102       correctly identify the correct deployment path for OpenDaylight Maven
103       sites.
104   -->
105   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
106
107   <distributionManagement>
108     <site>
109       <id>opendaylight-site</id>
110       <url>${nexus.site.url}/${project.artifactId}/</url>
111     </site>
112   </distributionManagement>
113 </project>