Adding auto-sorting plugin to all Controller via parent/pom.xml
[controller.git] / opendaylight / hosttracker / integrationtest / 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>commons.integrationtest</artifactId>
7     <version>0.5.2-SNAPSHOT</version>
8     <relativePath>../../commons/integrationtest</relativePath>
9   </parent>
10
11   <artifactId>hosttracker.integrationtest</artifactId>
12   <version>0.5.2-SNAPSHOT</version>
13   <properties>
14     <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
15     <!-- Sonar jacoco plugin to get integration test coverage info -->
16     <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
17   </properties>
18
19   <dependencies>
20     <dependency>
21       <groupId>ch.qos.logback</groupId>
22       <artifactId>logback-classic</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>ch.qos.logback</groupId>
26       <artifactId>logback-core</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>arphandler</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>clustering.services</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>clustering.stub</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>configuration</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>configuration.implementation</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>connectionmanager</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>connectionmanager.implementation</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>containermanager</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>containermanager.it.implementation</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>hosttracker</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>hosttracker.implementation</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal.connection</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.controller</groupId>
86       <artifactId>sal.connection.implementation</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>sal.implementation</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>switchmanager</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>switchmanager.implementation</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>topologymanager</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.slf4j</groupId>
106       <artifactId>log4j-over-slf4j</artifactId>
107     </dependency>
108     <!-- Add Pax Exam -->
109     <dependency>
110       <groupId>org.ops4j.pax.exam</groupId>
111       <artifactId>pax-exam-container-native</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.ops4j.pax.exam</groupId>
116       <artifactId>pax-exam-junit4</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.ops4j.pax.exam</groupId>
121       <artifactId>pax-exam-link-mvn</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.ops4j.pax.url</groupId>
126       <artifactId>pax-url-aether</artifactId>
127       <scope>test</scope>
128     </dependency>
129   </dependencies>
130
131   <build>
132     <plugins>
133       <plugin>
134         <groupId>org.jacoco</groupId>
135         <artifactId>jacoco-maven-plugin</artifactId>
136         <configuration>
137           <destFile>../implementation/target/jacoco-it.exec</destFile>
138           <includes>
139             <include>org.opendaylight.controller.*</include>
140           </includes>
141         </configuration>
142         <executions>
143           <execution>
144             <id>pre-test</id>
145             <goals>
146               <goal>prepare-agent</goal>
147             </goals>
148           </execution>
149           <execution>
150             <id>post-test</id>
151             <configuration>
152               <skip>true</skip>
153             </configuration>
154           </execution>
155         </executions>
156       </plugin>
157     </plugins>
158   </build>
159   <scm>
160     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
161     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
162     <tag>HEAD</tag>
163     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
164   </scm>
165 </project>