63105f102fbdd7ba7dca005b533dccf3beaf0993
[openflowplugin.git] / openflowplugin-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.openflowplugin</groupId>
6         <artifactId>commons.openflowplugin</artifactId>
7         <version>0.0.1-SNAPSHOT</version>
8         <relativePath>../commons</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-it</artifactId>
12
13     <properties>
14         <exam.version>3.0.0</exam.version>
15     </properties>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.ops4j.pax.exam</groupId>
21                 <artifactId>maven-paxexam-plugin</artifactId>
22                 <version>1.2.4</version>
23                 <executions>
24                     <execution>
25                         <id>generate-config</id>
26                         <goals>
27                             <goal>generate-depends-file</goal>
28                         </goals>
29                     </execution>
30                 </executions>
31             </plugin>
32         </plugins>
33         <pluginManagement>
34             <plugins>
35                 <!--This plugin's configuration is used to store Eclipse m2e settings
36                     only. It has no influence on the Maven build itself. -->
37                 <plugin>
38                     <groupId>org.eclipse.m2e</groupId>
39                     <artifactId>lifecycle-mapping</artifactId>
40                     <version>1.0.0</version>
41                     <configuration>
42                         <lifecycleMappingMetadata>
43                             <pluginExecutions>
44                                 <pluginExecution>
45                                     <pluginExecutionFilter>
46                                         <groupId>
47                                             org.ops4j.pax.exam
48                                         </groupId>
49                                         <artifactId>
50                                             maven-paxexam-plugin
51                                         </artifactId>
52                                         <versionRange>
53                                             [1.2.4,)
54                                         </versionRange>
55                                         <goals>
56                                             <goal>
57                                                 generate-depends-file
58                                             </goal>
59                                         </goals>
60                                     </pluginExecutionFilter>
61                                     <action>
62                                         <ignore></ignore>
63                                     </action>
64                                 </pluginExecution>
65                             </pluginExecutions>
66                         </lifecycleMappingMetadata>
67                     </configuration>
68                 </plugin>
69             </plugins>
70         </pluginManagement>
71     </build>
72
73     <dependencies>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-binding-it</artifactId>
77             <version>1.0-SNAPSHOT</version>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81         <groupId>org.opendaylight.controller</groupId>
82         <artifactId>sal-binding-broker-impl</artifactId>
83         <version>1.0-SNAPSHOT</version>
84         <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.openflowplugin</groupId>
88             <artifactId>openflowplugin</artifactId>
89             <version>0.0.1-SNAPSHOT</version>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.openflowjava</groupId>
94             <artifactId>openflow-protocol-impl</artifactId>
95             <version>0.1-SNAPSHOT</version>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.openflowjava</groupId>
100             <artifactId>simple-client</artifactId>
101             <version>0.1-SNAPSHOT</version>
102             <scope>test</scope>
103         </dependency>
104
105         <dependency>
106             <groupId>org.javassist</groupId>
107             <artifactId>javassist</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
112             <artifactId>xtend-lib-osgi</artifactId>
113             <version>2.4.3</version>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.ops4j.pax.exam</groupId>
118             <artifactId>pax-exam-container-native</artifactId>
119             <version>${exam.version}</version>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.ops4j.pax.exam</groupId>
124             <artifactId>pax-exam-junit4</artifactId>
125             <version>${exam.version}</version>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.ops4j.pax.exam</groupId>
130             <artifactId>pax-exam-link-mvn</artifactId>
131             <version>${exam.version}</version>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>equinoxSDK381</groupId>
136             <artifactId>org.eclipse.osgi</artifactId>
137             <version>3.8.1.v20120830-144521</version>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.slf4j</groupId>
142             <artifactId>log4j-over-slf4j</artifactId>
143             <scope>test</scope>
144         </dependency>
145
146         <dependency>
147             <groupId>ch.qos.logback</groupId>
148             <artifactId>logback-core</artifactId>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>ch.qos.logback</groupId>
153             <artifactId>logback-classic</artifactId>
154             <scope>test</scope>
155         </dependency>
156     </dependencies>
157 </project>