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