Bumped Yangtools by minor version.
[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.8.0-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>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         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>binding-generator-util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-parser-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-impl</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>binding-generator-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>binding-generator-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>binding-type-provider</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.google.code.findbugs</groupId>
53             <artifactId>jsr305</artifactId>
54             <scope>provided</scope>
55         </dependency>
56
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.commons</groupId>
63             <artifactId>commons-lang3</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.eclipse.xtend</groupId>
71             <artifactId>org.eclipse.xtend.lib</artifactId>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.felix</groupId>
79                 <artifactId>maven-bundle-plugin</artifactId>
80                 <extensions>true</extensions>
81                 <configuration>
82                     <instructions>
83                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
84                         <Export-Package>
85                             org.opendaylight.yangtools.sal.binding.generator.impl.*,
86                             org.opendaylight.yangtools.sal.binding.generator.util.*
87                         </Export-Package>
88                         <Embed-Dependency>
89                             org.eclipse.xtend.lib;inline=true,
90                             org.eclipse.xtend.lib.macro;inline=true,
91                             org.eclipse.xtext.xbase.lib;inline=true,
92                         </Embed-Dependency>
93                         <Embed-Transitive>true</Embed-Transitive>
94                     </instructions>
95                 </configuration>
96             </plugin>
97             <plugin>
98                 <groupId>org.eclipse.xtend</groupId>
99                 <artifactId>xtend-maven-plugin</artifactId>
100             </plugin>
101         </plugins>
102     </build>
103
104 </project>