3ce094e3d895508cf65bb1fc2ccff36602f5d613
[mdsal.git] / code-generator / binding-type-provider / 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"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.yangtools</groupId>
15         <artifactId>binding-generator</artifactId>
16         <version>0.6.0-SNAPSHOT</version>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>binding-type-provider</artifactId>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <artifactId>maven-jar-plugin</artifactId>
26             </plugin>
27             <plugin>
28                 <groupId>org.apache.felix</groupId>
29                 <artifactId>maven-bundle-plugin</artifactId>
30                 <extensions>true</extensions>
31                 <configuration>
32                     <instructions>
33                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
34                     </instructions>
35                 </configuration>
36             </plugin>
37         </plugins>
38     </build>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>binding-generator-spi</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>binding-generator-util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-model-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.commons</groupId>
55             <artifactId>commons-lang3</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60             <scope>test</scope>
61         </dependency>
62     </dependencies>
63
64 </project>