Fixed publishDataChangeEvent in 2phase commit
[controller.git] / opendaylight / config / yang-store-impl / 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>yang-store-impl</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>${project.groupId}</groupId>
17             <artifactId>yang-store-api</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.osgi</groupId>
21             <artifactId>org.osgi.core</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.slf4j</groupId>
25             <artifactId>slf4j-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>yang-jmx-generator</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>binding-type-provider</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>commons-io</groupId>
37             <artifactId>commons-io</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>com.google.guava</groupId>
41             <artifactId>guava</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>mockito-configuration</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>com.google.code.findbugs</groupId>
49             <artifactId>jsr305</artifactId>
50         </dependency>
51     </dependencies>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.felix</groupId>
57                 <artifactId>maven-bundle-plugin</artifactId>
58                 <configuration>
59                     <instructions>
60                         <Bundle-Activator>org.opendaylight.controller.config.yang.store.impl.YangStoreActivator</Bundle-Activator>
61                         <Export-Package>
62                         </Export-Package>
63                     </instructions>
64                 </configuration>
65             </plugin>
66             <!-- test jar -->
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-jar-plugin</artifactId>
70             </plugin>
71         </plugins>
72     </build>
73
74 </project>