Bump versions by x.y.(z+1)
[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.5.5-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-logger</artifactId>
13   <version>0.7.5-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.mdsal.model</groupId>
22         <artifactId>mdsal-model-artifacts</artifactId>
23         <version>0.9.5-SNAPSHOT</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.neutron</groupId>
32       <artifactId>neutron-spi</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.neutron</groupId>
37       <artifactId>model</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.osgi</groupId>
42       <artifactId>org.osgi.core</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>config-api</artifactId>
51       <version>0.5.5-SNAPSHOT</version>
52     </dependency>
53   </dependencies>
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.felix</groupId>
58         <artifactId>maven-bundle-plugin</artifactId>
59         <extensions>true</extensions>
60         <configuration>
61           <instructions>
62             <Import-Package>*</Import-Package>
63           </instructions>
64           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
65         </configuration>
66       </plugin>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-compiler-plugin</artifactId>
70         <inherited>true</inherited>
71         <configuration>
72           <compilerArgs>
73             <arg>-Xlint:unchecked</arg>
74             <arg>-Xlint:deprecation</arg>
75           </compilerArgs>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80   <scm>
81     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
82     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
83     <tag>HEAD</tag>
84     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
85   </scm>
86   <distributionManagement>
87     <!-- Site deployment -->
88     <site>
89       <id>opendaylight-site</id>
90       <url>${nexus.site.url}/${project.artifactId}/</url>
91     </site>
92   </distributionManagement>
93
94   <!--
95       Maven Site Configuration
96
97       The following configuration is necessary for maven-site-plugin to
98       correctly identify the correct deployment path for OpenDaylight Maven
99       sites.
100   -->
101   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
102 </project>