Merge "Remove magic numbers from neutron-spi classes"
[neutron.git] / integration / test / 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.odlparent</groupId>
6     <artifactId>features-parent</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>integration-test</artifactId>
13   <version>0.6.0-SNAPSHOT</version>
14   <packaging>jar</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.neutron</groupId>
19       <artifactId>features-neutron</artifactId>
20       <version>${project.version}</version>
21       <classifier>features</classifier>
22       <type>xml</type>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>dummyprovider</artifactId>
27       <version>${project.version}</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.neutron</groupId>
31       <artifactId>neutron-karaf</artifactId>
32       <version>${project.version}</version>
33       <type>zip</type>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <pluginManagement>
39       <plugins>
40         <plugin>
41           <groupId>org.jacoco</groupId>
42           <artifactId>jacoco-maven-plugin</artifactId>
43           <version>${jacoco.version}</version>
44         </plugin>
45       </plugins>
46     </pluginManagement>
47     <plugins>
48       <plugin>
49         <groupId>org.ops4j.pax.exam</groupId>
50         <artifactId>maven-paxexam-plugin</artifactId>
51         <executions>
52           <execution>
53             <id>generate-config</id>
54             <goals>
55               <goal>generate-depends-file</goal>
56             </goals>
57           </execution>
58         </executions>
59       </plugin>
60       <plugin>
61         <groupId>org.jacoco</groupId>
62         <artifactId>jacoco-maven-plugin</artifactId>
63         <configuration>
64           <includes>
65             <include>org.opendaylight.neutron.*</include>
66           </includes>
67         </configuration>
68         <executions>
69           <execution>
70             <id>pre-test</id>
71             <goals>
72               <goal>prepare-agent-integration</goal>
73             </goals>
74           </execution>
75           <execution>
76             <id>post-test</id>
77             <goals>
78               <goal>report</goal>
79             </goals>
80             <phase>test</phase>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>  
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
89     <tag>HEAD</tag>
90     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
91   </scm>
92 </project>