77606c1acba2ed00c7c050053570ad58160fe161
[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>7.0.6</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>6.0.6-SNAPSHOT</version>
23     <packaging>jar</packaging>
24
25     <properties>
26         <!-- FIXME: we have some violations here -->
27         <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <dependency>
33                 <groupId>org.opendaylight.mdsal</groupId>
34                 <artifactId>mdsal-artifacts</artifactId>
35                 <version>6.0.6-SNAPSHOT</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39             <dependency>
40                 <groupId>org.opendaylight.yangtools</groupId>
41                 <artifactId>yangtools-artifacts</artifactId>
42                 <version>5.0.6</version>
43                 <type>pom</type>
44                 <scope>import</scope>
45             </dependency>
46         </dependencies>
47     </dependencyManagement>
48
49     <dependencies>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-maven-plugin-spi</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-generator-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-generator-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding-java-api-generator</artifactId>
65         </dependency>
66
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-data-api</artifactId>
70         </dependency>
71
72         <dependency>
73             <groupId>org.apache.maven</groupId>
74             <artifactId>maven-core</artifactId>
75             <version>3.3.3</version>
76             <scope>provided</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.sonatype.plexus</groupId>
80             <artifactId>plexus-build-api</artifactId>
81             <scope>provided</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-test-util</artifactId>
86         </dependency>
87     </dependencies>
88
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.eclipse.xtend</groupId>
93                 <artifactId>xtend-maven-plugin</artifactId>
94             </plugin>
95         </plugins>
96     </build>
97 </project>