Merge "Immutable implementation of new yang-data-api"
[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             <plugin>
40                 <groupId>org.apache.felix</groupId>
41                 <artifactId>maven-bundle-plugin</artifactId>
42                 <extensions>true</extensions>
43                 <configuration>
44                     <instructions>
45                         <Export-Package>
46                             org.opendaylight.yangtools.yang.data.impl.*
47                         </Export-Package>
48                     </instructions>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53
54     <dependencies>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>yang-common</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>yang-data-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>yang-binding</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>yang-parser-impl</artifactId>
70             <exclusions>
71                 <exclusion>
72                     <groupId>org.slf4j</groupId>
73                     <artifactId>slf4j-simple</artifactId>
74                 </exclusion>
75             </exclusions>
76         </dependency>
77         <dependency>
78             <groupId>com.google.guava</groupId>
79             <artifactId>guava</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.slf4j</groupId>
88             <artifactId>slf4j-log4j12</artifactId>
89             <version>${slf4j.version}</version>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.codehaus.groovy</groupId>
94             <artifactId>groovy</artifactId>
95             <version>${groovy.version}</version>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.codehaus.groovy</groupId>
100             <artifactId>groovy-xml</artifactId>
101             <version>${groovy.version}</version>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>xmlunit</groupId>
106             <artifactId>xmlunit</artifactId>
107             <version>1.5</version>
108             <scope>test</scope>
109         </dependency>
110       <dependency>
111         <groupId>commons-lang</groupId>
112         <artifactId>commons-lang</artifactId>
113         <version>2.6</version>
114       </dependency>
115     </dependencies>
116 </project>