1bb6354de5dd9bf6735a629404f77b8629aa9dca
[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.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>1.8.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-binding-generator-impl</artifactId>
22     <version>0.10.0-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.mdsal</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>2.2.0-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <dependency>
35                 <groupId>org.opendaylight.yangtools</groupId>
36                 <artifactId>yangtools-artifacts</artifactId>
37                 <version>1.1.0-SNAPSHOT</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.javassist</groupId>
47             <artifactId>javassist</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-data-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-generator-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-generator-util</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>com.google.code.findbugs</groupId>
65             <artifactId>jsr305</artifactId>
66             <scope>provided</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>mockito-configuration</artifactId>
76             <scope>test</scope>
77         </dependency>
78
79         <dependency>
80             <groupId>org.apache.commons</groupId>
81             <artifactId>commons-lang3</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>com.google.guava</groupId>
85             <artifactId>guava</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.eclipse.xtext</groupId>
89             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>yang-test-util</artifactId>
94         </dependency>
95     </dependencies>
96
97     <build>
98         <plugins>
99             <plugin>
100                 <groupId>org.apache.felix</groupId>
101                 <artifactId>maven-bundle-plugin</artifactId>
102                 <extensions>true</extensions>
103                 <configuration>
104                     <instructions>
105                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
106                         <Export-Package>
107                             {local-packages},
108                             org.opendaylight.yangtools.sal.binding.generator.impl,
109                         </Export-Package>
110                     </instructions>
111                 </configuration>
112             </plugin>
113             <plugin>
114                 <groupId>org.eclipse.xtend</groupId>
115                 <artifactId>xtend-maven-plugin</artifactId>
116             </plugin>
117         </plugins>
118     </build>
119
120
121   <!--
122       Maven Site Configuration
123
124       The following configuration is necessary for maven-site-plugin to
125       correctly identify the correct deployment path for OpenDaylight Maven
126       sites.
127   -->
128   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
129
130   <distributionManagement>
131     <site>
132       <id>opendaylight-site</id>
133       <url>${nexus.site.url}/${project.artifactId}/</url>
134     </site>
135   </distributionManagement>
136
137 </project>