ac01a3f180728f132b64304c9b0b4e4649d012b9
[ovsdb.git] / commons / 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.ovsdb</groupId>
6     <artifactId>commons.ovsdb</artifactId>
7     <version>1.0.1-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>commons.integrationtest</artifactId>
12   <version>1.0.1-SNAPSHOT</version>
13   <packaging>pom</packaging>
14
15   <properties>
16     <exam.version>3.5.0</exam.version>
17     <url.version>1.6.0</url.version>
18   </properties>
19
20   <dependencies>
21     <dependency>
22       <groupId>ch.qos.logback</groupId>
23       <artifactId>logback-classic</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>ch.qos.logback</groupId>
27       <artifactId>logback-core</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>equinoxSDK381</groupId>
31       <artifactId>org.apache.felix.gogo.command</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>org.apache.felix.gogo.runtime</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>equinoxSDK381</groupId>
39       <artifactId>org.apache.felix.gogo.shell</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>equinoxSDK381</groupId>
43       <artifactId>org.eclipse.equinox.console</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>equinoxSDK381</groupId>
47       <artifactId>org.eclipse.equinox.ds</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>equinoxSDK381</groupId>
51       <artifactId>org.eclipse.equinox.util</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>equinoxSDK381</groupId>
55       <artifactId>org.eclipse.osgi.services</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>log4j-over-slf4j</artifactId>
64     </dependency>
65     <!-- Add Pax Exam -->
66     <dependency>
67       <groupId>org.ops4j.pax.exam</groupId>
68       <artifactId>pax-exam-junit4</artifactId>
69       <version>${exam.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.exam</groupId>
74       <artifactId>pax-exam-link-mvn</artifactId>
75       <version>${exam.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.ops4j.pax.url</groupId>
80       <artifactId>pax-url-aether</artifactId>
81       <version>${url.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91         <version>${checkstyle.version}</version>
92         <configuration>
93           <failsOnError>true</failsOnError>
94           <configLocation>controller/checkstyle.xml</configLocation>
95         </configuration>
96         <dependencies>
97           <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>checkstyle</artifactId>
100             <version>0.0.3-SNAPSHOT</version>
101           </dependency>
102         </dependencies>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-surefire-plugin</artifactId>
107         <version>${surefire.version}</version>
108         <configuration>
109           <skipTests>true</skipTests>
110         </configuration>
111       </plugin>
112       <plugin>
113         <groupId>org.codehaus.mojo</groupId>
114         <artifactId>properties-maven-plugin</artifactId>
115         <version>${propertymavenplugin.version}</version>
116         <executions>
117           <execution>
118             <goals>
119               <goal>set-system-properties</goal>
120             </goals>
121             <configuration>
122               <properties>
123                 <property>
124                   <name>logback.configurationFile</name>
125                   <value>${project.parent.parent.basedir}/logback.xml</value>
126                 </property>
127               </properties>
128             </configuration>
129           </execution>
130         </executions>
131       </plugin>
132       <plugin>
133         <groupId>org.ops4j.pax.exam</groupId>
134         <artifactId>maven-paxexam-plugin</artifactId>
135         <version>1.2.4</version>
136         <executions>
137           <execution>
138             <id>generate-config</id>
139             <goals>
140               <goal>generate-depends-file</goal>
141             </goals>
142           </execution>
143         </executions>
144       </plugin>
145     </plugins>
146   </build>
147   <scm>
148     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
149     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
150     <tag>HEAD</tag>
151     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
152   </scm>
153 </project>