d37501f99acb902aa1fcf118af0139ab7f38311e
[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         <dependency>
73             <groupId>org.eclipse.xtend</groupId>
74             <artifactId>org.eclipse.xtend.lib.macro</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.eclipse.xtext</groupId>
78             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
79         </dependency>
80     </dependencies>
81
82     <build>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.felix</groupId>
86                 <artifactId>maven-bundle-plugin</artifactId>
87                 <extensions>true</extensions>
88                 <configuration>
89                     <instructions>
90                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
91                         <Export-Package>
92                             {local-packages},
93                             org.opendaylight.yangtools.sal.binding.generator.impl,
94                         </Export-Package>
95                         <Embed-Transitive>true</Embed-Transitive>
96                         <Embed-Dependency>
97                             org.eclipse.xtend.lib;inline=true,
98                             org.eclipse.xtend.lib.macro;inline=true,
99                             org.eclipse.xtext.xbase.lib;inline=true,
100                         </Embed-Dependency>
101                     </instructions>
102                 </configuration>
103             </plugin>
104             <plugin>
105                 <groupId>org.eclipse.xtend</groupId>
106                 <artifactId>xtend-maven-plugin</artifactId>
107             </plugin>
108         </plugins>
109     </build>
110
111 </project>