Add missing <name> fields for pom.xml files
[neutron.git] / neutron-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-spi</artifactId>
13   <version>0.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <!-- <name> formatting is used by autorelease to parse and notify projects on
16        build failure. Please do not modify this unless you have a good reason. -->
17   <name>ODL :: neutron :: ${project.artifactId}</name>
18   <properties>
19     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.mdsal.model</groupId>
25         <artifactId>mdsal-model-artifacts</artifactId>
26         <version>0.10.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>model</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal.model</groupId>
40       <artifactId>ietf-inet-types-2013-07-15</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal.model</groupId>
44       <artifactId>ietf-yang-types-20130715</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal.model</groupId>
48       <artifactId>yang-ext</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>commons-net</groupId>
52       <artifactId>commons-net</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.osgi</groupId>
56       <artifactId>org.osgi.core</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>javax.validation</groupId>
69       <artifactId>validation-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.eclipse.persistence</groupId>
73       <artifactId>org.eclipse.persistence.antlr</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.eclipse.persistence</groupId>
78       <artifactId>org.eclipse.persistence.core</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82        <groupId>org.eclipse.persistence</groupId>
83        <artifactId>org.eclipse.persistence.moxy</artifactId>
84        <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-annotations</artifactId>
89     </dependency>
90   </dependencies>
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <extensions>true</extensions>
97         <configuration>
98           <instructions>
99             <Import-Package>*</Import-Package>
100           </instructions>
101         </configuration>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-compiler-plugin</artifactId>
106         <inherited>true</inherited>
107         <configuration>
108           <compilerArgs>
109             <arg>-Xlint:unchecked</arg>
110             <arg>-Xlint:deprecation</arg>
111           </compilerArgs>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116   <scm>
117     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
121   </scm>
122   <distributionManagement>
123     <!-- Site deployment -->
124     <site>
125       <id>opendaylight-site</id>
126       <url>${nexus.site.url}/${project.artifactId}/</url>
127     </site>
128   </distributionManagement>
129
130   <!--
131       Maven Site Configuration
132
133       The following configuration is necessary for maven-site-plugin to
134       correctly identify the correct deployment path for OpenDaylight Maven
135       sites.
136   -->
137   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
138 </project>