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