Merge "Modifying user roles via GUI"
[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         <dependency>
21             <groupId>org.jolokia</groupId>
22             <artifactId>jolokia-client-java</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.jolokia</groupId>
26             <artifactId>jolokia-jvm</artifactId>
27             <classifier>agent</classifier>
28         </dependency>
29
30         <!-- test dependencies -->
31         <dependency>
32             <groupId>com.google.guava</groupId>
33             <artifactId>guava</artifactId>
34             <scope>test</scope>
35         </dependency>
36     </dependencies>
37
38     <build>
39         <plugins>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-surefire-plugin</artifactId>
43                 <configuration>
44                     <forkCount>1</forkCount>
45                     <reuseForks>false</reuseForks>
46                     <perCoreThreadCount>false</perCoreThreadCount>
47                     <threadCount>1</threadCount>
48                 </configuration>
49             </plugin>
50             <!-- test jar -->
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-jar-plugin</artifactId>
54             </plugin>
55         </plugins>
56     </build>
57
58 </project>