Bump honeycomb version to 1.18.04-SNAPSHOT
[honeycomb.git] / common / common-scripts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   ~ Copyright (c) 2016 Cisco and/or its affiliates.
5   ~
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at:
9   ~
10   ~     http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   -->
18 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21     <parent>
22         <groupId>io.fd.honeycomb.scripts</groupId>
23         <artifactId>scripts-parent</artifactId>
24         <version>1.18.04-SNAPSHOT</version>
25         <relativePath>../scripts-parent</relativePath>
26     </parent>
27
28     <modelVersion>4.0.0</modelVersion>
29     <groupId>io.fd.honeycomb.common</groupId>
30     <artifactId>common-scripts</artifactId>
31     <name>${project.artifactId}</name>
32     <version>1.18.04-SNAPSHOT</version>
33     <packaging>jar</packaging>
34
35     <properties>
36         <commons-io.version>2.5</commons-io.version>
37     </properties>
38
39     <dependencies>
40         <dependency>
41             <groupId>org.codehaus.groovy</groupId>
42             <artifactId>groovy-all</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>yang-binding</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>commons-io</groupId>
50             <artifactId>commons-io</artifactId>
51             <version>${commons-io.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>io.fd.honeycomb.yang</groupId>
55             <artifactId>yang-whitelist-impl</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58     </dependencies>
59
60 </project>