Add missing <name> fields for pom.xml files
[neutron.git] / northbound-api / 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>northbound-api</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   <dependencies>
22     <dependency>
23       <groupId>com.sun.jersey</groupId>
24       <artifactId>jersey-core</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>com.sun.jersey</groupId>
28       <artifactId>jersey-server</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.codehaus.enunciate</groupId>
32       <artifactId>enunciate-core-annotations</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.eclipse.persistence</groupId>
36       <artifactId>org.eclipse.persistence.moxy</artifactId>
37     </dependency>
38     <dependency>
39         <groupId>javax.validation</groupId>
40         <artifactId>validation-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.neutron</groupId>
44       <artifactId>neutron-spi</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50     </dependency>
51   </dependencies>
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <extensions>true</extensions>
58         <configuration>
59           <instructions>
60             <Import-Package>
61               com.sun.jersey.spi.container.servlet,
62               org.eclipse.jetty.servlets,
63               org.opendaylight.aaa.shiro.filters,
64               org.opendaylight.aaa.shiro.realm,
65               org.opendaylight.aaa.shiro.web.env,
66               org.apache.shiro.web.env,
67               !org.codehaus.enunciate.jaxrs,
68               javax.validation,
69               javax.ws.rs.ext,
70               javax.xml.bind,
71               *
72             </Import-Package>
73             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
74           </instructions>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-compiler-plugin</artifactId>
80         <inherited>true</inherited>
81         <configuration>
82           <compilerArgs>
83             <arg>-Xlint:unchecked</arg>
84             <arg>-Xlint:deprecation</arg>
85           </compilerArgs>
86         </configuration>
87       </plugin>
88     </plugins>
89   </build>
90   <scm>
91     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
92     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
93     <tag>HEAD</tag>
94     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
95   </scm>
96
97   <distributionManagement>
98     <!-- Site deployment -->
99     <site>
100       <id>opendaylight-site</id>
101       <url>${nexus.site.url}/${project.artifactId}/</url>
102     </site>
103   </distributionManagement>
104
105   <!--
106       Maven Site Configuration
107
108       The following configuration is necessary for maven-site-plugin to
109       correctly identify the correct deployment path for OpenDaylight Maven
110       sites.
111   -->
112   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
113 </project>