Fixed publishDataChangeEvent in 2phase commit
[controller.git] / opendaylight / config / config-manager / 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-manager</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14
15     <dependencies>
16         <!-- compile dependencies -->
17         <dependency>
18             <groupId>${project.groupId}</groupId>
19             <artifactId>config-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.slf4j</groupId>
23             <artifactId>slf4j-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.google.code.findbugs</groupId>
31             <artifactId>jsr305</artifactId>
32         </dependency>
33         <!--
34         <dependency>
35             <groupId>com.googlecode.json-simple</groupId>
36             <artifactId>json-simple</artifactId>
37             <version>1.1</version>
38         </dependency>
39         -->
40         <dependency>
41             <groupId>commons-io</groupId>
42             <artifactId>commons-io</artifactId>
43         </dependency>
44
45         <!-- test dependencies -->
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>mockito-configuration</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>config-util</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>config-util</artifactId>
58             <scope>test</scope>
59             <type>test-jar</type>
60         </dependency>
61         <dependency>
62             <groupId>com.google.guava</groupId>
63             <artifactId>guava</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>concepts</artifactId>
69             <version>${yangtools.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-data-impl</artifactId>
74             <version>${yangtools.version}</version>
75         </dependency>
76     </dependencies>
77
78     <build>
79         <plugins>
80             <plugin>
81                 <groupId>org.apache.felix</groupId>
82                 <artifactId>maven-bundle-plugin</artifactId>
83                 <configuration>
84                     <instructions>
85                         <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator
86                         </Bundle-Activator>
87                         <Private-Package>
88                             org.opendaylight.controller.config.manager.*,
89                             javax.annotation.*,
90                         </Private-Package>
91                         <Export-Package>
92                         </Export-Package>
93                     </instructions>
94                 </configuration>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-jar-plugin</artifactId>
99             </plugin>
100             <plugin>
101                 <groupId>org.apache.maven.plugins</groupId>
102                 <artifactId>maven-surefire-plugin</artifactId>
103                 <configuration>
104                     <forkCount>1</forkCount>
105                     <reuseForks>false</reuseForks>
106                     <perCoreThreadCount>false</perCoreThreadCount>
107                     <threadCount>1</threadCount>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112
113 </project>