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