Introduce top-level pom file.
[mdsal.git] / binding / mdsal-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.mdsal</groupId>
14         <artifactId>mdsal-binding</artifactId>
15         <version>0.8.0-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>mdsal-binding-generator-impl</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.javassist</groupId>
25             <artifactId>javassist</artifactId>
26         </dependency>
27
28         <dependency>
29             <groupId>org.opendaylight.yangtools</groupId>
30             <artifactId>yang-parser-impl</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.yangtools</groupId>
34             <artifactId>yang-data-impl</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-binding-generator-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-binding-generator-util</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>com.google.code.findbugs</groupId>
47             <artifactId>jsr305</artifactId>
48             <scope>provided</scope>
49         </dependency>
50
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54         </dependency>
55         <dependency>
56           <groupId>org.mockito</groupId>
57           <artifactId>mockito-core</artifactId>
58         </dependency>
59
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                 <groupId>org.apache.felix</groupId>
78                 <artifactId>maven-bundle-plugin</artifactId>
79                 <extensions>true</extensions>
80                 <configuration>
81                     <instructions>
82                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
83                         <Export-Package>
84                             org.opendaylight.yangtools.sal.binding.generator.impl.*,
85                             org.opendaylight.yangtools.sal.binding.generator.util.*
86                         </Export-Package>
87                         <Embed-Dependency>
88                             org.eclipse.xtend.lib;inline=true,
89                             org.eclipse.xtend.lib.macro;inline=true,
90                             org.eclipse.xtext.xbase.lib;inline=true,
91                         </Embed-Dependency>
92                         <Embed-Transitive>true</Embed-Transitive>
93                     </instructions>
94                 </configuration>
95             </plugin>
96             <plugin>
97                 <groupId>org.eclipse.xtend</groupId>
98                 <artifactId>xtend-maven-plugin</artifactId>
99             </plugin>
100         </plugins>
101     </build>
102
103 </project>