Merge "Add filtering capability to config.ini in order to reference logging bridge...
[controller.git] / opendaylight / netconf / netconf-it / pom.xml
1 <?xml version="1.0"?>
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
5     <parent>
6         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.5-SNAPSHOT</version>
9     </parent>
10
11     <artifactId>netconf-it</artifactId>
12     <name>${project.artifactId}</name>
13
14     <dependencies>
15         <!-- compile dependencies -->
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>config-api</artifactId>
19             <scope>test</scope>
20         </dependency>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>config-util</artifactId>
24             <scope>test</scope>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>netconf-api</artifactId>
29             <scope>test</scope>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>netconf-client</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>config-netconf-connector</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>config-manager</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>config-persister-impl</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>config-manager</artifactId>
54             <scope>test</scope>
55             <type>test-jar</type>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>netconf-impl</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>netconf-monitoring</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>sal-binding-it</artifactId>
70             <version>${mdsal.version}</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>netconf-mapping-api</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>netconf-ssh</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>netconf-ssh</artifactId>
86             <scope>test</scope>
87             <type>test-jar</type>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>netconf-util</artifactId>
92             <scope>test</scope>
93             <type>test-jar</type>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>yang-test</artifactId>
98             <version>${config.version}</version>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>logback-config</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.slf4j</groupId>
107             <artifactId>slf4j-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.yangtools</groupId>
111             <artifactId>mockito-configuration</artifactId>
112         </dependency>
113         <dependency>
114           <groupId>org.opendaylight.controller</groupId>
115           <artifactId>commons.logback_settings</artifactId>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-surefire-plugin</artifactId>
124                 <configuration>
125                     <forkCount>1</forkCount>
126                     <reuseForks>false</reuseForks>
127                     <perCoreThreadCount>false</perCoreThreadCount>
128                 </configuration>
129                 <executions>
130                     <execution>
131                         <id>default-test</id>
132                         <configuration>
133                             <skip>true</skip>
134                         </configuration>
135                     </execution>
136                     <execution>
137                         <id>integration-tests</id>
138                         <phase>integration-test</phase>
139                         <goals>
140                             <goal>test</goal>
141                         </goals>
142                         <configuration>
143                             <skip>false</skip>
144                             <argLine>-Dlogback.configurationFile=${maven.test.dest}/logback.xml</argLine>
145                         </configuration>
146                     </execution>
147                 </executions>
148             </plugin>
149             <plugin>
150                 <groupId>org.ops4j.pax.exam</groupId>
151                 <artifactId>maven-paxexam-plugin</artifactId>
152                 <version>1.2.4</version>
153                 <executions>
154                     <execution>
155                         <id>generate-config</id>
156                         <goals>
157                             <goal>generate-depends-file</goal>
158                         </goals>
159                     </execution>
160                 </executions>
161             </plugin>
162         </plugins>
163     </build>
164 </project>