3927288a137f6a5f8f8749bd53b5de9cb4662025
[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.9.1-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.opendaylight.yangtools</groupId>
57             <artifactId>mockito-configuration</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>
70             <groupId>org.eclipse.xtext</groupId>
71             <artifactId>org.eclipse.xtext.xbase.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                             {local-packages},
86                             org.opendaylight.yangtools.sal.binding.generator.impl,
87                         </Export-Package>
88                     </instructions>
89                 </configuration>
90             </plugin>
91             <plugin>
92                 <groupId>org.eclipse.xtend</groupId>
93                 <artifactId>xtend-maven-plugin</artifactId>
94             </plugin>
95         </plugins>
96     </build>
97
98
99   <!--
100       Maven Site Configuration
101
102       The following configuration is necessary for maven-site-plugin to
103       correctly identify the correct deployment path for OpenDaylight Maven
104       sites.
105   -->
106   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
107
108   <distributionManagement>
109     <site>
110       <id>opendaylight-site</id>
111       <url>${nexus.site.url}/${project.artifactId}/</url>
112     </site>
113   </distributionManagement>
114
115 </project>