d03ea46ffa4b2689e25a02188ac96c6794022210
[controller.git] / opendaylight / config / yang-jmx-generator / 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.6.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10
11   <artifactId>yang-jmx-generator</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal</groupId>
26       <artifactId>mdsal-binding-generator-impl</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.yangtools</groupId>
30       <artifactId>yang-model-util</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>mockito-configuration</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.slf4j</groupId>
39       <artifactId>slf4j-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.apache.commons</groupId>
43       <artifactId>commons-lang3</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-parser-impl</artifactId>
49       <scope>test</scope>
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             <Private-Package>org.opendaylight.controller.config.yangjmxgenerator.plugin.util,</Private-Package>
61             <Export-Package>org.opendaylight.controller.config.yangjmxgenerator,
62                             org.opendaylight.controller.config.yangjmxgenerator.attribute,</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 </project>