Use FileGenerator for java-api-generator
[mdsal.git] / binding / maven-sal-api-gen-plugin / 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>odlparent</artifactId>
15         <version>9.0.2</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>maven-sal-api-gen-plugin</artifactId>
22     <version>8.0.0-SNAPSHOT</version>
23     <packaging>jar</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.mdsal</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>8.0.0-SNAPSHOT</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>7.0.3</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-maven-plugin-spi</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.eclipse.xtext</groupId>
51             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>yang-data-api</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.apache.maven</groupId>
61             <artifactId>maven-core</artifactId>
62             <version>3.5.2</version>
63             <scope>provided</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.sonatype.plexus</groupId>
67             <artifactId>plexus-build-api</artifactId>
68             <scope>provided</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.kohsuke.metainf-services</groupId>
72             <artifactId>metainf-services</artifactId>
73         </dependency>
74
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-test-util</artifactId>
78         </dependency>
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.eclipse.xtend</groupId>
85                 <artifactId>xtend-maven-plugin</artifactId>
86             </plugin>
87         </plugins>
88     </build>
89 </project>