Merge "Added .gitreview"
[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.8.0-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-util</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-generator-impl</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal</groupId>
59             <artifactId>mdsal-binding-generator-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>junit</groupId>
63             <artifactId>junit</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.eclipse.xtend</groupId>
68             <artifactId>org.eclipse.xtend.lib</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.google.guava</groupId>
72             <artifactId>guava</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.sonatype.plexus</groupId>
76             <artifactId>plexus-build-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.codehaus.plexus</groupId>
80             <artifactId>plexus-container-default</artifactId>
81             <version>1.5.6</version>
82             <scope>provided</scope>
83             <exclusions>
84                 <!-- plexus-build-api pulls in version 1.5.8, while this pulls in 3.0.20.
85                      Dependency convergence would break if we did not specify this. -->
86                 <exclusion>
87                     <groupId>org.codehaus.plexus</groupId>
88                     <artifactId>plexus-utils</artifactId>
89                 </exclusion>
90             </exclusions>
91         </dependency>
92
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-core</artifactId>
96         </dependency>
97     </dependencies>
98
99 </project>