Add missing <name> fields for pom.xml files
[neutron.git] / transcriber / 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   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>transcriber</artifactId>
12   <version>0.8.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <!-- <name> formatting is used by autorelease to parse and notify projects on
15        build failure. Please do not modify this unless you have a good reason. -->
16   <name>ODL :: neutron :: ${project.artifactId}</name>
17   <properties>
18     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
19     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
20   </properties>
21   <build>
22     <plugins>
23       <plugin>
24           <artifactId>maven-checkstyle-plugin</artifactId>
25           <configuration>
26             <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
27             <consoleOutput>true</consoleOutput>
28              <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
29           </configuration>
30           <executions>
31             <execution>
32               <goals>
33                 <goal>check</goal>
34               </goals>
35               <phase>process-sources</phase>
36             </execution>
37           </executions>
38       </plugin>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
46           </instructions>
47           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
48         </configuration>
49       </plugin>
50       <plugin>
51         <groupId>org.apache.maven.plugins</groupId>
52         <artifactId>maven-compiler-plugin</artifactId>
53         <inherited>true</inherited>
54         <configuration>
55           <compilerArgs>
56             <arg>-Xlint:unchecked</arg>
57             <arg>-Xlint:deprecation</arg>
58           </compilerArgs>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.neutron</groupId>
66       <artifactId>northbound-api</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.neutron</groupId>
71       <artifactId>neutron-spi</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.neutron</groupId>
76       <artifactId>model</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>org.osgi</groupId>
81       <artifactId>org.osgi.core</artifactId>
82     </dependency>
83   </dependencies>
84   <scm>
85     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
86     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
87     <tag>HEAD</tag>
88     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
89   </scm>
90
91   <!--
92       Maven Site Configuration
93
94       The following configuration is necessary for maven-site-plugin to
95       correctly identify the correct deployment path for OpenDaylight Maven
96       sites.
97   -->
98   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
99
100   <distributionManagement>
101     <site>
102       <id>opendaylight-site</id>
103       <url>${nexus.site.url}/${project.artifactId}/</url>
104     </site>
105   </distributionManagement>
106 </project>