fdb81457a0f81c389ca40a9498c2a4c51ec41add
[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.8.0-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-impl</artifactId>
21   <version>1.0.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <name>${project.artifactId}</name>
24
25   <properties>
26     <jacoco.version>0.7.2.201409121644</jacoco.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>nemo-api</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.slf4j</groupId>
41       <artifactId>slf4j-simple</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.codehaus.jettison</groupId>
46       <artifactId>jettison</artifactId>
47     </dependency>
48   </dependencies>
49
50   <build>
51     <pluginManagement>
52       <plugins>
53         <plugin>
54           <groupId>org.jacoco</groupId>
55           <artifactId>jacoco-maven-plugin</artifactId>
56           <version>${jacoco.version}</version>
57         </plugin>
58       </plugins>
59     </pluginManagement>
60     <plugins>
61       <plugin>
62         <groupId>org.jacoco</groupId>
63         <artifactId>jacoco-maven-plugin</artifactId>
64         <configuration>
65           <includes>
66             <include>org.opendaylight.nemo.*</include>
67           </includes>
68         </configuration>
69         <executions>
70           <execution>
71             <id>pre-test</id>
72             <goals>
73               <goal>prepare-agent</goal>
74             </goals>
75           </execution>
76           <execution>
77             <id>post-test</id>
78             <goals>
79               <goal>report</goal>
80             </goals>
81             <phase>test</phase>
82           </execution>
83         </executions>
84       </plugin>
85     </plugins>
86   </build>
87
88   <scm>
89     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
91     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
92     <tag>HEAD</tag>
93   </scm>
94 </project>