Bump versions to 5.0.3-SNAPSHOT
[netconf.git] / restconf / wadl-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     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.netconf</groupId>
15         <artifactId>netconf-parent</artifactId>
16         <version>5.0.3-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>restconf-wadl-generator</artifactId>
21     <packaging>jar</packaging>
22     <description>A simple generator for WADL files, pluggable into yang-maven-plugin</description>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <!-- FIXME: remove this dependency -->
31             <groupId>org.eclipse.xtext</groupId>
32             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
33             <version>2.26.0</version>
34         </dependency>
35         <dependency>
36             <groupId>org.kohsuke.metainf-services</groupId>
37             <artifactId>metainf-services</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-model-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>plugin-generator-api</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-test-util</artifactId>
55         </dependency>
56     </dependencies>
57 </project>