Cleaned up Java Binding code from YANG Tools
[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 <!--      <plugin>
45         <artifactId>maven-enforcer-plugin</artifactId>
46         <executions>
47           <execution>
48             <id>enforce</id>
49             <phase>none</phase>
50           </execution>
51         </executions>
52       </plugin> -->
53         </plugins>
54     </build>
55
56     <dependencies>
57         <dependency>
58             <groupId>org.opendaylight.mdsal</groupId>
59             <artifactId>mdsal-binding-generator-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-binding-generator-impl</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding-generator-util</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.eclipse.xtend</groupId>
77             <artifactId>org.eclipse.xtend.lib</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>com.google.guava</groupId>
81             <artifactId>guava</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.sonatype.plexus</groupId>
85             <artifactId>plexus-build-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.codehaus.plexus</groupId>
89             <artifactId>plexus-container-default</artifactId>
90             <version>1.5.6</version>
91             <scope>provided</scope>
92             <exclusions>
93                 <!-- plexus-build-api pulls in version 1.5.8, while this pulls in 3.0.20.
94                      Dependency convergence would break if we did not specify this. -->
95                 <exclusion>
96                     <groupId>org.codehaus.plexus</groupId>
97                     <artifactId>plexus-utils</artifactId>
98                 </exclusion>
99             </exclusions>
100         </dependency>
101
102         <dependency>
103             <groupId>org.mockito</groupId>
104             <artifactId>mockito-core</artifactId>
105         </dependency>
106     </dependencies>
107
108 </project>