Release Carbon
[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.4-Carbon</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-test-util</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <configuration>
58           <instructions>
59             <Private-Package>org.opendaylight.controller.config.yangjmxgenerator.plugin.util,</Private-Package>
60             <Export-Package>org.opendaylight.controller.config.yangjmxgenerator,
61                             org.opendaylight.controller.config.yangjmxgenerator.attribute,</Export-Package>
62           </instructions>
63         </configuration>
64       </plugin>
65       <!-- test jar -->
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-jar-plugin</artifactId>
69         <executions>
70           <execution>
71             <goals>
72               <goal>test-jar</goal>
73             </goals>
74             <phase>package</phase>
75           </execution>
76         </executions>
77       </plugin>
78     </plugins>
79   </build>
80 </project>