Introduce top-level pom file.
[mdsal.git] / code-generator / binding-data-codec / 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-data-codec</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.javassist</groupId>
24             <artifactId>javassist</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>binding-generator-impl</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-parser-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-data-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>binding-generator-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>binding-generator-spi</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>binding-type-provider</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.google.code.findbugs</groupId>
52             <artifactId>jsr305</artifactId>
53             <scope>provided</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>binding-test-model</artifactId>
58             <scope>test</scope>
59         </dependency>
60
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><groupId>junit</groupId>
70             <artifactId>junit</artifactId>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <artifactId>maven-jar-plugin</artifactId>
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                         <Export-Package>
88                             org.opendaylight.yangtools.binding.data.codec.*,
89                             org.opendaylight.yangtools.binding.data.codec.gen.impl.*,
90                             org.opendaylight.yangtools.binding.data.codec.impl.*,
91                         </Export-Package>
92                     </instructions>
93                 </configuration>
94             </plugin>
95         </plugins>
96     </build>
97 </project>