Plugin migration to use the new Schema independent Library.
[netvirt.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>ovsdb_commons</artifactId>
7     <version>1.1.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10   <artifactId>ovsdb_commons_integrationtest</artifactId>
11   <version>1.0.1-SNAPSHOT</version>
12   <packaging>pom</packaging>
13
14   <properties>
15     <exam.version>3.5.0</exam.version>
16     <url.version>1.6.0</url.version>
17     <ovsdb.library.version>1.0.0-SNAPSHOT</ovsdb.library.version>
18     <ovsdb.plugin.version>1.0.0-SNAPSHOT</ovsdb.plugin.version>
19     <ovsdb.northbound.version>0.6.0-SNAPSHOT</ovsdb.northbound.version>
20     <schema.Open_vSwitch.version>1.0.0-SNAPSHOT</schema.Open_vSwitch.version>
21     <schema.hardware_vtep.version>1.0.0-SNAPSHOT</schema.hardware_vtep.version>
22   </properties>
23
24   <dependencies>
25     <dependency>
26       <groupId>ch.qos.logback</groupId>
27       <artifactId>logback-classic</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>ch.qos.logback</groupId>
31       <artifactId>logback-core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>org.apache.felix.gogo.command</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>equinoxSDK381</groupId>
39       <artifactId>org.apache.felix.gogo.runtime</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>equinoxSDK381</groupId>
43       <artifactId>org.apache.felix.gogo.shell</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>equinoxSDK381</groupId>
47       <artifactId>org.eclipse.equinox.console</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>equinoxSDK381</groupId>
51       <artifactId>org.eclipse.equinox.ds</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>equinoxSDK381</groupId>
55       <artifactId>org.eclipse.equinox.util</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>equinoxSDK381</groupId>
59       <artifactId>org.eclipse.osgi.services</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>log4j-over-slf4j</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.ovsdb</groupId>
71       <artifactId>ovsdb_library</artifactId>
72       <version>${ovsdb.library.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.ovsdb</groupId>
76       <artifactId>ovsdb_plugin</artifactId>
77       <version>${ovsdb.plugin.version}</version>
78     </dependency>
79 <!--
80     TODO : Remove this comment once the Northbound migration is complete.
81
82     <dependency>
83       <groupId>org.opendaylight.ovsdb</groupId>
84       <artifactId>ovsdb_northbound</artifactId>
85       <version>${ovsdb.northbound.version}</version>
86     </dependency>
87 -->
88     <dependency>
89       <groupId>org.opendaylight.ovsdb</groupId>
90       <artifactId>ovsdb_schema.Open_vSwitch</artifactId>
91       <version>${schema.Open_vSwitch.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.ovsdb</groupId>
95       <artifactId>ovsdb_schema.hardware_vtep</artifactId>
96       <version>${schema.hardware_vtep.version}</version>
97     </dependency>
98
99     <!-- Add Pax Exam -->
100     <dependency>
101       <groupId>org.ops4j.pax.exam</groupId>
102       <artifactId>pax-exam-junit4</artifactId>
103       <version>${exam.version}</version>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.ops4j.pax.exam</groupId>
108       <artifactId>pax-exam-link-mvn</artifactId>
109       <version>${exam.version}</version>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.ops4j.pax.url</groupId>
114       <artifactId>pax-url-aether</artifactId>
115       <version>${url.version}</version>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-checkstyle-plugin</artifactId>
125         <version>${checkstyle.version}</version>
126         <configuration>
127           <failsOnError>true</failsOnError>
128           <configLocation>controller/checkstyle.xml</configLocation>
129         </configuration>
130         <dependencies>
131           <dependency>
132             <groupId>org.opendaylight.controller</groupId>
133             <artifactId>checkstyle</artifactId>
134             <version>0.0.3-SNAPSHOT</version>
135           </dependency>
136         </dependencies>
137       </plugin>
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-surefire-plugin</artifactId>
141         <version>${surefire.version}</version>
142         <configuration>
143           <skipTests>true</skipTests>
144         </configuration>
145       </plugin>
146       <plugin>
147         <groupId>org.codehaus.mojo</groupId>
148         <artifactId>properties-maven-plugin</artifactId>
149         <version>${propertymavenplugin.version}</version>
150         <executions>
151           <execution>
152             <goals>
153               <goal>set-system-properties</goal>
154             </goals>
155             <configuration>
156               <properties>
157                 <property>
158                   <name>logback.configurationFile</name>
159                   <value>${project.parent.parent.basedir}/logback.xml</value>
160                 </property>
161               </properties>
162             </configuration>
163           </execution>
164         </executions>
165       </plugin>
166       <plugin>
167         <groupId>org.ops4j.pax.exam</groupId>
168         <artifactId>maven-paxexam-plugin</artifactId>
169         <version>1.2.4</version>
170         <executions>
171           <execution>
172             <id>generate-config</id>
173             <phase>none</phase>
174             <goals>
175               <goal>generate-depends-file</goal>
176             </goals>
177           </execution>
178         </executions>
179       </plugin>
180     </plugins>
181   </build>
182   <scm>
183     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
184     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
185     <tag>HEAD</tag>
186     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
187   </scm>
188 </project>