Bump versions by x.(y+1).z for next dev cycle
[nemo.git] / nemo-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.13.0-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-impl</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: nemo :: ${project.artifactId}</name>
26
27   <properties>
28     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
29     <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
30   </properties>
31
32   <dependencyManagement>
33     <dependencies>
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>1.8.0-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>ietf-inet-types-2013-07-15</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal.model</groupId>
55       <artifactId>ietf-yang-types-20130715</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>nemo-api</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>net.sourceforge.collections</groupId>
64       <artifactId>collections-generic</artifactId>
65       <version>4.01</version>
66     </dependency>
67     <dependency>
68       <groupId>net.sf.jung</groupId>
69       <artifactId>jung-api</artifactId>
70       <version>2.0.1</version>
71     </dependency>
72     <dependency>
73       <groupId>net.sf.jung</groupId>
74       <artifactId>jung-graph-impl</artifactId>
75       <version>2.0.1</version>
76     </dependency>
77     <dependency>
78       <groupId>net.sf.jung</groupId>
79       <artifactId>jung-algorithms</artifactId>
80       <version>2.0.1</version>
81     </dependency>
82     <dependency>
83       <groupId>com.google.guava</groupId>
84       <artifactId>guava</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>junit</groupId>
88       <artifactId>junit</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.mockito</groupId>
93       <artifactId>mockito-core</artifactId>
94       <scope>test</scope>
95     </dependency>
96         <dependency>
97       <groupId>org.powermock</groupId>
98       <artifactId>powermock-core</artifactId>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.powermock</groupId>
103       <artifactId>powermock-module-junit4</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.powermock</groupId>
108       <artifactId>powermock-api-mockito</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.slf4j</groupId>
113       <artifactId>slf4j-simple</artifactId>
114       <scope>test</scope>
115     </dependency>
116   </dependencies>
117
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.felix</groupId>
122         <artifactId>maven-bundle-plugin</artifactId>
123         <extensions>true</extensions>
124         <configuration>
125           <instructions>
126             <Bundle-ClassPath>.,{maven-dependencies}</Bundle-ClassPath>
127             <Import-Package>*;resolution:=optional</Import-Package>
128             <Embed-Dependency>
129               collections-generic,jung-api,jung-graph-impl,jung-algorithms
130             </Embed-Dependency>
131             <Embed-Transitive>true</Embed-Transitive>
132             <Embed-Directory>lib</Embed-Directory>
133             <Embed-StripGroup>true</Embed-StripGroup>
134             <_failok>true</_failok>
135             <_nouses>true</_nouses>
136           </instructions>
137           <manifestLocation>${project.build.outputDirectory}/META-INF</manifestLocation>
138         </configuration>
139       </plugin>
140       <plugin>
141         <groupId>org.jacoco</groupId>
142         <artifactId>jacoco-maven-plugin</artifactId>
143         <executions>
144           <execution>
145             <id>pre-unit-test</id>
146             <goals>
147               <goal>prepare-agent</goal>
148             </goals>
149             <configuration>
150               <destFile>${sonar.jacoco.reportPath}</destFile>
151             </configuration>
152           </execution>
153           <execution>
154             <id>post-unit-test</id>
155             <goals>
156               <goal>report</goal>
157             </goals>
158             <configuration>
159               <dataFile>${sonar.jacoco.reportPath}</dataFile>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164     </plugins>
165   </build>
166
167   <scm>
168     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
169     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
170     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
171     <tag>HEAD</tag>
172   </scm>
173 </project>