Bump versions of config-subsystem and netconf-subsystem to 0.2.3-SNAPSHOT.
[controller.git] / opendaylight / config / yang-jmx-generator-it / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <artifactId>config-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.2.3-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>yang-jmx-generator-it</artifactId>
13     <name>${project.artifactId}</name>
14
15     <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>yang-test</artifactId>
24             <scope>test</scope>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>config-manager</artifactId>
29             <scope>test</scope>
30             <type>test-jar</type>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>config-manager</artifactId>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>config-util</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.bgpcep</groupId>
44             <artifactId>mockito-configuration</artifactId>
45             <scope>test</scope>
46         </dependency>
47     </dependencies>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-surefire-plugin</artifactId>
54                 <configuration>
55                     <forkCount>1</forkCount>
56                     <reuseForks>false</reuseForks>
57                     <perCoreThreadCount>false</perCoreThreadCount>
58                 </configuration>
59                 <executions>
60                     <execution>
61                         <id>default-test</id>
62                         <configuration>
63                             <skip>true</skip>
64                         </configuration>
65                     </execution>
66                     <execution>
67                         <id>integration-tests</id>
68                         <phase>integration-test</phase>
69                         <goals>
70                             <goal>test</goal>
71                         </goals>
72                         <configuration>
73                             <includes>
74                                 <include>**/org/opendaylight/controller/config/yangjmxgenerator/it/*.java</include>
75                             </includes>
76                             <skip>false</skip>
77                         </configuration>
78                     </execution>
79                 </executions>
80             </plugin>
81         </plugins>
82     </build>
83 </project>