Remove jolokia dependency from config-subsystem.
[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"
2          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.3-SNAPSHOT</version>
8         <relativePath>..</relativePath>
9     </parent>
10     <artifactId>config-util</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>jar</packaging>
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             <plugin>
31                 <groupId>org.apache.maven.plugins</groupId>
32                 <artifactId>maven-surefire-plugin</artifactId>
33                 <configuration>
34                     <forkCount>1</forkCount>
35                     <reuseForks>false</reuseForks>
36                     <perCoreThreadCount>false</perCoreThreadCount>
37                     <threadCount>1</threadCount>
38                 </configuration>
39             </plugin>
40             <!-- test jar -->
41             <plugin>
42                 <groupId>org.apache.maven.plugins</groupId>
43                 <artifactId>maven-jar-plugin</artifactId>
44             </plugin>
45         </plugins>
46     </build>
47
48 </project>