Merge changes I4a9861ed,I61c130b9
[controller.git] / opendaylight / config / config-util / 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     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-util</artifactId>
11   <packaging>jar</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <!-- test dependencies -->
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24       <scope>test</scope>
25     </dependency>
26   </dependencies>
27
28   <build>
29     <plugins>
30       <!-- test jar -->
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-jar-plugin</artifactId>
34       </plugin>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-surefire-plugin</artifactId>
38         <configuration>
39           <forkCount>1</forkCount>
40           <reuseForks>false</reuseForks>
41           <perCoreThreadCount>false</perCoreThreadCount>
42           <threadCount>1</threadCount>
43         </configuration>
44       </plugin>
45     </plugins>
46   </build>
47
48 </project>