Merge "BUG-1276: fixed generated union constructor"
[yangtools.git] / code-generator / binding-generator-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>binding-generator</artifactId>
15         <version>0.6.2-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>binding-generator-impl</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.javassist</groupId>
24             <artifactId>javassist</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>binding-generator-util</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-parser-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-data-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>binding-generator-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>binding-generator-spi</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>binding-type-provider</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.google.code.findbugs</groupId>
52             <artifactId>jsr305</artifactId>
53             <scope>provided</scope>
54         </dependency>
55
56         <dependency>
57             <groupId>junit</groupId>
58             <artifactId>junit</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.apache.commons</groupId>
62             <artifactId>commons-lang3</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.eclipse.xtend</groupId>
70             <artifactId>org.eclipse.xtend.lib</artifactId>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <plugin>
77                 <artifactId>maven-jar-plugin</artifactId>
78             </plugin>
79             <plugin>
80                 <groupId>org.apache.felix</groupId>
81                 <artifactId>maven-bundle-plugin</artifactId>
82                 <extensions>true</extensions>
83                 <configuration>
84                     <instructions>
85                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
86                         <Export-Package>
87                             org.opendaylight.yangtools.sal.binding.generator.impl.*,
88                             org.opendaylight.yangtools.sal.binding.generator.util.*
89                         </Export-Package>
90                     </instructions>
91                 </configuration>
92             </plugin>
93             <plugin>
94                 <groupId>org.eclipse.xtend</groupId>
95                 <artifactId>xtend-maven-plugin</artifactId>
96             </plugin>
97         </plugins>
98     </build>
99
100 </project>