Bump versions by x.(y+1).z for next dev cycle
[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.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.12.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>transcriber</artifactId>
12   <version>0.10.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
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>mdsal-artifacts</artifactId>
27         <version>1.7.0-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <build>
35     <plugins>
36       <plugin>
37           <artifactId>maven-checkstyle-plugin</artifactId>
38           <configuration>
39             <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
40             <consoleOutput>true</consoleOutput>
41              <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
42           </configuration>
43           <executions>
44             <execution>
45               <goals>
46                 <goal>check</goal>
47               </goals>
48               <phase>process-sources</phase>
49             </execution>
50           </executions>
51       </plugin>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <extensions>true</extensions>
56         <configuration>
57           <instructions>
58             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
59           </instructions>
60           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
61         </configuration>
62       </plugin>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-compiler-plugin</artifactId>
66         <inherited>true</inherited>
67         <configuration>
68           <compilerArgs>
69             <arg>-Xlint:unchecked</arg>
70             <arg>-Xlint:deprecation</arg>
71           </compilerArgs>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.apache.aries.blueprint</groupId>
76         <artifactId>blueprint-maven-plugin</artifactId>
77       </plugin>
78     </plugins>
79   </build>
80   <dependencies>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-binding-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.neutron</groupId>
87       <artifactId>northbound-api</artifactId>
88       <version>${project.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.neutron</groupId>
92       <artifactId>neutron-spi</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.neutron</groupId>
97       <artifactId>model</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>org.osgi</groupId>
102       <artifactId>org.osgi.core</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>javax.inject</groupId>
106       <artifactId>javax.inject</artifactId>
107     </dependency>
108   </dependencies>
109   <scm>
110     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
111     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
112     <tag>HEAD</tag>
113     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
114   </scm>
115
116   <!--
117       Maven Site Configuration
118
119       The following configuration is necessary for maven-site-plugin to
120       correctly identify the correct deployment path for OpenDaylight Maven
121       sites.
122   -->
123   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
124
125   <distributionManagement>
126     <site>
127       <id>opendaylight-site</id>
128       <url>${nexus.site.url}/${project.artifactId}/</url>
129     </site>
130   </distributionManagement>
131 </project>