[maven-release-plugin] prepare release master-tagforprepareonly-controller-bulk-relea...
[controller.git] / opendaylight / config / config-util / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <artifactId>config-subsystem</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.3</version>
7         <relativePath>..</relativePath>
8     </parent>
9     <artifactId>config-util</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>jar</packaging>
12
13     <dependencies>
14         <!-- compile dependencies -->
15         <dependency>
16             <groupId>${project.groupId}</groupId>
17             <artifactId>config-api</artifactId>
18         </dependency>
19         <!-- test dependencies -->
20         <dependency>
21             <groupId>com.google.guava</groupId>
22             <artifactId>guava</artifactId>
23             <scope>test</scope>
24         </dependency>
25     </dependencies>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.maven.plugins</groupId>
31                 <artifactId>maven-surefire-plugin</artifactId>
32                 <configuration>
33                     <forkCount>1</forkCount>
34                     <reuseForks>false</reuseForks>
35                     <perCoreThreadCount>false</perCoreThreadCount>
36                     <threadCount>1</threadCount>
37                 </configuration>
38             </plugin>
39             <!-- test jar -->
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-jar-plugin</artifactId>
43             </plugin>
44         </plugins>
45     </build>
46
47 </project>