BUG-1276: fixed generated union constructor
[yangtools.git] / code-generator / maven-sal-api-gen-plugin / 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     <modelVersion>4.0.0</modelVersion>
18     <artifactId>maven-sal-api-gen-plugin</artifactId>
19
20     <dependencies>
21         <dependency>
22             <groupId>org.opendaylight.yangtools</groupId>
23             <artifactId>yang-maven-plugin-spi</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.yangtools</groupId>
27             <artifactId>binding-model-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>binding-generator-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>binding-generator-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>binding-java-api-generator</artifactId>
40         </dependency>
41
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-data-api</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.sonatype.plexus</groupId>
49             <artifactId>plexus-build-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.codehaus.plexus</groupId>
53             <artifactId>plexus-slf4j-logging</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>junit</groupId>
58             <artifactId>junit</artifactId>
59             <scope>test</scope>
60         </dependency>
61     </dependencies>
62
63     <build>
64         <plugins>
65             <plugin>
66                 <artifactId>maven-jar-plugin</artifactId>
67                 <configuration>
68                     <archive>
69                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
70                     </archive>
71                 </configuration>
72             </plugin>
73             <plugin>
74                 <groupId>org.apache.felix</groupId>
75                 <artifactId>maven-bundle-plugin</artifactId>
76                 <extensions>true</extensions>
77                 <configuration>
78                     <instructions>
79                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
80                         <Import-Package>
81                             !org.apache.maven.plugin.logging,
82                             !org.apache.maven.project
83                             *
84                         </Import-Package>
85                     </instructions>
86                 </configuration>
87             </plugin>
88             <plugin>
89                 <groupId>org.eclipse.xtend</groupId>
90                 <artifactId>xtend-maven-plugin</artifactId>
91             </plugin>
92             <plugin>
93                 <artifactId>maven-clean-plugin</artifactId>
94             </plugin>
95         </plugins>
96     </build>
97
98 </project>