Merge "Deprecate yang-model-util InstanceIdentifier"
[yangtools.git] / yang / yang-data-impl / 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.yangtools</groupId>
14         <artifactId>yang</artifactId>
15         <version>0.6.2-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>yang-data-impl</artifactId>
20     <name>${project.artifactId}</name>
21     <description>${project.artifactId}</description>
22
23     <properties>
24         <groovy.version>2.1.6</groovy.version>
25     </properties>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.maven.plugins</groupId>
31                 <artifactId>maven-surefire-plugin</artifactId>
32                 <version>${maven.surefire.version}</version>
33                 <configuration>
34                     <argLine>-Dlog4j.configuration=log4j-test.xml
35                         -Xmx1500m</argLine>
36                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
37                 </configuration>
38             </plugin>
39         </plugins>
40     </build>
41
42     <dependencies>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>yang-common</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>yang-data-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>yang-binding</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>yang-parser-impl</artifactId>
58             <exclusions>
59                 <exclusion>
60                     <groupId>org.slf4j</groupId>
61                     <artifactId>slf4j-simple</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.slf4j</groupId>
76             <artifactId>slf4j-log4j12</artifactId>
77             <version>${slf4j.version}</version>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.codehaus.groovy</groupId>
82             <artifactId>groovy</artifactId>
83             <version>${groovy.version}</version>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.codehaus.groovy</groupId>
88             <artifactId>groovy-xml</artifactId>
89             <version>${groovy.version}</version>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>xmlunit</groupId>
94             <artifactId>xmlunit</artifactId>
95             <version>1.4</version>
96             <scope>test</scope>
97         </dependency>
98       <dependency>
99         <groupId>commons-lang</groupId>
100         <artifactId>commons-lang</artifactId>
101         <version>2.6</version>
102       </dependency>
103     </dependencies>
104 </project>