Initial code drop of yang model driven configuration system
[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</groupId>
9         <version>0.2.1-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             <version>0.2.1-SNAPSHOT</version>
20             <scope>test</scope>
21         </dependency>
22         <dependency>
23             <groupId>${project.groupId}</groupId>
24             <artifactId>yang-test</artifactId>
25             <version>0.2.1-SNAPSHOT</version>
26             <scope>test</scope>
27         </dependency>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>config-manager</artifactId>
31             <version>0.2.1-SNAPSHOT</version>
32             <scope>test</scope>
33             <type>test-jar</type>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>config-manager</artifactId>
38             <version>0.2.1-SNAPSHOT</version>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>config-util</artifactId>
44             <version>0.2.1-SNAPSHOT</version>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.bgpcep</groupId>
49             <artifactId>mockito-configuration</artifactId>
50             <version>0.2.0-SNAPSHOT</version>
51             <scope>test</scope>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-surefire-plugin</artifactId>
60                 <configuration>
61                     <forkCount>1</forkCount>
62                     <reuseForks>false</reuseForks>
63                     <perCoreThreadCount>false</perCoreThreadCount>
64                 </configuration>
65                 <executions>
66                     <execution>
67                         <id>default-test</id>
68                         <configuration>
69                             <skip>true</skip>
70                         </configuration>
71                     </execution>
72                     <execution>
73                         <id>integration-tests</id>
74                         <phase>integration-test</phase>
75                         <goals>
76                             <goal>test</goal>
77                         </goals>
78                         <configuration>
79                             <includes>
80                                 <include>**/org/opendaylight/controller/config/yangjmxgenerator/it/*.java</include>
81                             </includes>
82                             <skip>false</skip>
83                         </configuration>
84                     </execution>
85                 </executions>
86             </plugin>
87         </plugins>
88     </build>
89 </project>