Add missing <name> fields for pom.xml files
[neutron.git] / neutron-logger / 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.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-logger</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>neutron-spi</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>model</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.osgi</groupId>
45       <artifactId>org.osgi.core</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>config-api</artifactId>
54       <version>0.6.0-SNAPSHOT</version>
55     </dependency>
56   </dependencies>
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <extensions>true</extensions>
63         <configuration>
64           <instructions>
65             <Import-Package>*</Import-Package>
66           </instructions>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-compiler-plugin</artifactId>
72         <inherited>true</inherited>
73         <configuration>
74           <compilerArgs>
75             <arg>-Xlint:unchecked</arg>
76             <arg>-Xlint:deprecation</arg>
77           </compilerArgs>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82   <scm>
83     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
84     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
85     <tag>HEAD</tag>
86     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
87   </scm>
88   <distributionManagement>
89     <!-- Site deployment -->
90     <site>
91       <id>opendaylight-site</id>
92       <url>${nexus.site.url}/${project.artifactId}/</url>
93     </site>
94   </distributionManagement>
95
96   <!--
97       Maven Site Configuration
98
99       The following configuration is necessary for maven-site-plugin to
100       correctly identify the correct deployment path for OpenDaylight Maven
101       sites.
102   -->
103   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
104 </project>