Merge "Added comments to the opendaylight-inventory.yang file to help describe the...
[controller.git] / opendaylight / config / config-manager / 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-manager</artifactId>
11   <packaging>bundle</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     <dependency>
21       <groupId>com.google.code.findbugs</groupId>
22       <artifactId>jsr305</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>commons-io</groupId>
31       <artifactId>commons-io</artifactId>
32     </dependency>
33
34     <!--Dependencies regardign RuntimeGeneratedMappingService-->
35     <dependency>
36       <groupId>org.opendaylight.yangtools</groupId>
37       <artifactId>binding-generator-impl</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>concepts</artifactId>
42     </dependency>
43
44     <!-- test dependencies -->
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>mockito-configuration</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-data-impl</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.osgi</groupId>
55       <artifactId>org.osgi.core</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <!--End-->
62
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>config-util</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>config-util</artifactId>
71       <type>test-jar</type>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <configuration>
82           <instructions>
83             <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator</Bundle-Activator>
84             <Private-Package>org.opendaylight.controller.config.manager.*,
85                             javax.annotation.*,</Private-Package>
86             <Export-Package></Export-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-jar-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-surefire-plugin</artifactId>
97         <configuration>
98           <forkCount>1</forkCount>
99           <reuseForks>false</reuseForks>
100           <perCoreThreadCount>false</perCoreThreadCount>
101           <threadCount>1</threadCount>
102         </configuration>
103       </plugin>
104     </plugins>
105   </build>
106
107 </project>