Merge "BUG-509: remove the key/value datastore"
[controller.git] / opendaylight / config / yang-jmx-generator-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>yang-jmx-generator-it</artifactId>
11   <name>${project.artifactId}</name>
12
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.yangtools</groupId>
16       <artifactId>mockito-configuration</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>${project.groupId}</groupId>
20       <artifactId>config-api</artifactId>
21       <scope>test</scope>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>config-manager</artifactId>
26       <type>test-jar</type>
27       <scope>test</scope>
28     </dependency>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>config-manager</artifactId>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>config-util</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>yang-test</artifactId>
42       <scope>test</scope>
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             <goals>
66               <goal>test</goal>
67             </goals>
68             <phase>integration-test</phase>
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>