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