Bump versions by x.y.(z+1)
[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.mdsal</groupId>
14         <artifactId>mdsal-binding</artifactId>
15         <version>0.9.5-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>mdsal-binding-java-api-generator</artifactId>
20
21     <build>
22         <plugins>
23             <plugin>
24                 <artifactId>maven-jar-plugin</artifactId>
25             </plugin>
26             <plugin>
27                 <groupId>org.apache.felix</groupId>
28                 <artifactId>maven-bundle-plugin</artifactId>
29                 <extensions>true</extensions>
30                 <configuration>
31                     <instructions>
32                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
33                         <Import-Package>
34                             !org.sonatype.plexus.build.incremental,
35                             *
36                         </Import-Package>
37                     </instructions>
38                 </configuration>
39             </plugin>
40             <plugin>
41                 <groupId>org.eclipse.xtend</groupId>
42                 <artifactId>xtend-maven-plugin</artifactId>
43             </plugin>
44         </plugins>
45     </build>
46
47     <dependencies>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-generator-impl</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-binding-generator-util</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.eclipse.xtend</groupId>
64             <artifactId>org.eclipse.xtend.lib</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.guava</groupId>
68             <artifactId>guava</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.sonatype.plexus</groupId>
72             <artifactId>plexus-build-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.codehaus.plexus</groupId>
76             <artifactId>plexus-container-default</artifactId>
77             <version>1.6</version>
78             <scope>provided</scope>
79             <exclusions>
80                 <!-- plexus-build-api pulls in version 1.5.8, while this pulls in 3.0.20.
81                      Dependency convergence would break if we did not specify this. -->
82                 <exclusion>
83                     <groupId>org.codehaus.plexus</groupId>
84                     <artifactId>plexus-utils</artifactId>
85                 </exclusion>
86             </exclusions>
87         </dependency>
88
89         <dependency>
90             <groupId>org.mockito</groupId>
91             <artifactId>mockito-core</artifactId>
92         </dependency>
93     </dependencies>
94
95
96   <!--
97       Maven Site Configuration
98
99       The following configuration is necessary for maven-site-plugin to
100       correctly identify the correct deployment path for OpenDaylight Maven
101       sites.
102   -->
103   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
104
105   <distributionManagement>
106     <site>
107       <id>opendaylight-site</id>
108       <url>${nexus.site.url}/${project.artifactId}/</url>
109     </site>
110   </distributionManagement>
111
112 </project>