[maven-release-plugin] prepare for next development iteration
[controller.git] / opendaylight / config / yang-jmx-generator-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     <parent>
5         <artifactId>config-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.4-SNAPSHOT</version>
8     </parent>
9
10     <artifactId>yang-jmx-generator-it</artifactId>
11     <name>${project.artifactId}</name>
12
13     <dependencies>
14         <dependency>
15             <groupId>${project.groupId}</groupId>
16             <artifactId>config-api</artifactId>
17             <scope>test</scope>
18         </dependency>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>yang-test</artifactId>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>config-manager</artifactId>
27             <scope>test</scope>
28             <type>test-jar</type>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>config-manager</artifactId>
33             <scope>test</scope>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>config-util</artifactId>
38             <scope>test</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.yangtools</groupId>
42             <artifactId>mockito-configuration</artifactId>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-surefire-plugin</artifactId>
51                 <configuration>
52                     <forkCount>1</forkCount>
53                     <reuseForks>false</reuseForks>
54                     <perCoreThreadCount>false</perCoreThreadCount>
55                 </configuration>
56                 <executions>
57                     <execution>
58                         <id>default-test</id>
59                         <configuration>
60                             <skip>true</skip>
61                         </configuration>
62                     </execution>
63                     <execution>
64                         <id>integration-tests</id>
65                         <phase>integration-test</phase>
66                         <goals>
67                             <goal>test</goal>
68                         </goals>
69                         <configuration>
70                             <includes>
71                                 <include>**/org/opendaylight/controller/config/yangjmxgenerator/it/*.java</include>
72                             </includes>
73                             <skip>false</skip>
74                         </configuration>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80 </project>