Merge "BUG-1902: reuse ConcreteTypeImpl instances"
[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.7.0-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>org.sonatype.sisu</groupId>
58             <artifactId>sisu-guava</artifactId>
59             <version>0.11.1</version>
60             <scope>runtime</scope>
61         </dependency>
62
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>test</scope>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <artifactId>maven-jar-plugin</artifactId>
74                 <configuration>
75                     <archive>
76                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
77                     </archive>
78                 </configuration>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.felix</groupId>
82                 <artifactId>maven-bundle-plugin</artifactId>
83                 <extensions>true</extensions>
84                 <configuration>
85                     <instructions>
86                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
87                         <Import-Package>
88                             !org.apache.maven.plugin.logging,
89                             !org.apache.maven.project
90                             *
91                         </Import-Package>
92                     </instructions>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.eclipse.xtend</groupId>
97                 <artifactId>xtend-maven-plugin</artifactId>
98             </plugin>
99         </plugins>
100     </build>
101
102 </project>