3ea8ac896003279cbea7e70a06b6a9a7e811da0a
[mdsal.git] / binding / mdsal-binding-java-api-generator / 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-java-api-generator</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         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.mdsal</groupId>
40             <artifactId>mdsal-binding-generator-impl</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal</groupId>
45             <artifactId>mdsal-binding-generator-util</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.eclipse.xtend</groupId>
54             <artifactId>org.eclipse.xtend.lib</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.sonatype.plexus</groupId>
62             <artifactId>plexus-build-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.codehaus.plexus</groupId>
66             <artifactId>plexus-container-default</artifactId>
67             <version>1.6</version>
68             <scope>provided</scope>
69             <exclusions>
70                 <!-- plexus-build-api pulls in version 1.5.8, while this pulls in 3.0.20.
71                      Dependency convergence would break if we did not specify this. -->
72                 <exclusion>
73                     <groupId>org.codehaus.plexus</groupId>
74                     <artifactId>plexus-utils</artifactId>
75                 </exclusion>
76             </exclusions>
77         </dependency>
78
79         <dependency>
80             <groupId>org.mockito</groupId>
81             <artifactId>mockito-core</artifactId>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.felix</groupId>
89                 <artifactId>maven-bundle-plugin</artifactId>
90                 <extensions>true</extensions>
91                 <configuration>
92                     <instructions>
93                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
94                         <Import-Package>
95                             !org.sonatype.plexus.build.incremental,
96                             *
97                         </Import-Package>
98                     </instructions>
99                 </configuration>
100             </plugin>
101             <plugin>
102                 <groupId>org.eclipse.xtend</groupId>
103                 <artifactId>xtend-maven-plugin</artifactId>
104             </plugin>
105         </plugins>
106     </build>
107
108   <!--
109       Maven Site Configuration
110
111       The following configuration is necessary for maven-site-plugin to
112       correctly identify the correct deployment path for OpenDaylight Maven
113       sites.
114   -->
115   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
116
117   <distributionManagement>
118     <site>
119       <id>opendaylight-site</id>
120       <url>${nexus.site.url}/${project.artifactId}/</url>
121     </site>
122   </distributionManagement>
123
124 </project>