Merge "Fixed GlobalEventExecutorCloseable - override "unsupported opearaion" methods."
[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.bgpcep</groupId>
45             <artifactId>mockito-configuration</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>com.google.code.findbugs</groupId>
50             <artifactId>jsr305</artifactId>
51         </dependency>
52     </dependencies>
53
54     <build>
55         <plugins>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Activator>org.opendaylight.controller.config.yang.store.impl.YangStoreActivator</Bundle-Activator>
62                         <Import-Package>
63                             org.opendaylight.controller.config.yang.store.api,
64                             org.opendaylight.controller.config.yangjmxgenerator,
65                             com.google.common.base,
66                             com.google.common.collect,
67                             com.google.common.primitives,
68                             org.apache.commons.io,
69                             org.osgi.framework,
70                             org.osgi.util.tracker,
71                             org.slf4j,
72                             <!-- YANGTOOLS -->
73                             org.opendaylight.yangtools.sal.binding.yang.types,
74                             org.opendaylight.yangtools.yang.common,
75                             org.opendaylight.yangtools.yang.model.api,
76                             org.opendaylight.yangtools.sal.binding.generator.spi,
77                             org.opendaylight.yangtools.yang.parser.impl,
78                         </Import-Package>
79                         <Export-Package>
80                         </Export-Package>
81                     </instructions>
82                 </configuration>
83             </plugin>
84             <!-- test jar -->
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-jar-plugin</artifactId>
88             </plugin>
89         </plugins>
90     </build>
91
92 </project>