Prepare for mvn release:prepare release:perform operation
[controller.git] / opendaylight / forwardingrulesmanager / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>commons.integrationtest</artifactId>
9     <version>0.5.0-SNAPSHOT</version>
10     <relativePath>../../commons/integrationtest</relativePath>
11   </parent>
12   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16   </scm>
17
18   <artifactId>forwardingrulesmanager.integrationtest</artifactId>
19   <version>0.4.0-SNAPSHOT</version>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>hosttracker</artifactId>
25       <version>0.4.0-SNAPSHOT</version>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>hosttracker.implementation</artifactId>
30       <version>0.4.0-SNAPSHOT</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>configuration</artifactId>
35       <version>0.4.0-SNAPSHOT</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>configuration.implementation</artifactId>
40       <version>0.4.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>clustering.services</artifactId>
45       <version>0.4.0-SNAPSHOT</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>clustering.stub</artifactId>
50       <version>0.4.0-SNAPSHOT</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>switchmanager</artifactId>
55       <version>0.5.0-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>switchmanager.implementation</artifactId>
60       <version>0.4.0-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal</artifactId>
65       <version>0.5.0-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal.implementation</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>forwardingrulesmanager</artifactId>
75       <version>0.4.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>forwardingrulesmanager.implementation</artifactId>
80       <version>0.4.0-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>containermanager</artifactId>
85       <version>0.4.0-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>containermanager.implementation</artifactId>
90       <version>0.4.0-SNAPSHOT</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>protocol_plugins.stub</artifactId>
95       <version>0.4.0-SNAPSHOT</version>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>topologymanager</artifactId>
100       <version>0.4.0-SNAPSHOT</version>
101     </dependency>
102     <dependency>
103       <groupId>junit</groupId>
104       <artifactId>junit</artifactId>
105       <version>4.8.1</version>
106       <scope>test</scope>
107     </dependency>
108   </dependencies>
109   <properties>
110     <!-- Sonar jacoco plugin to get integration test coverage info -->
111     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
112     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
113     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
114     <sonar.language>java</sonar.language>
115   </properties>
116   <build>
117     <pluginManagement>
118       <plugins>
119         <plugin>
120           <groupId>org.jacoco</groupId>
121           <artifactId>jacoco-maven-plugin</artifactId>
122           <version>0.5.3.201107060350</version>
123         </plugin>
124       </plugins>
125     </pluginManagement>
126     <plugins>
127       <plugin>
128         <groupId>org.jacoco</groupId>
129         <artifactId>jacoco-maven-plugin</artifactId>
130         <version>0.5.3.201107060350</version>
131         <configuration>
132           <destFile>../implementation/target/jacoco-it.exec</destFile>
133           <includes>org.opendaylight.controller.*</includes>
134         </configuration>
135         <executions>
136           <execution>
137             <id>pre-test</id>
138             <goals>
139               <goal>prepare-agent</goal>
140             </goals>
141           </execution>
142           <execution>
143             <id>post-test</id>
144             <configuration>
145               <skip>true</skip>
146             </configuration>
147           </execution>
148         </executions>
149       </plugin>
150     </plugins>
151   </build>
152 </project>