Merge "Bug 1781: Fix serialization of leafrefs"
[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 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4     This program and the accompanying materials are made available under the
5     terms of the Eclipse Public License v1.0 which accompanies this distribution,
6     and is available at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10     <parent>
11         <groupId>org.opendaylight.yangtools</groupId>
12         <artifactId>yangtools-parent</artifactId>
13         <version>0.7.0-SNAPSHOT</version>
14         <relativePath>/../../common/parent/pom.xml</relativePath>
15     </parent>
16
17     <modelVersion>4.0.0</modelVersion>
18     <artifactId>yang-data-impl</artifactId>
19     <name>${project.artifactId}</name>
20     <description>${project.artifactId}</description>
21
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.maven.plugins</groupId>
27                 <artifactId>maven-surefire-plugin</artifactId>
28                 <version>${maven.surefire.version}</version>
29                 <configuration>
30                 <argLine>-Dlog4j.configuration=log4j-test.xml
31                     -Xmx1500m ${jacoco.agent.ut.arg}</argLine>
32                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
33                 </configuration>
34             </plugin>
35             <plugin>
36                 <groupId>org.apache.felix</groupId>
37                 <artifactId>maven-bundle-plugin</artifactId>
38                 <extensions>true</extensions>
39                 <configuration>
40                     <instructions>
41                         <Export-Package>
42                             org.opendaylight.yangtools.yang.data.impl.*
43                         </Export-Package>
44                     </instructions>
45                 </configuration>
46             </plugin>
47         </plugins>
48     </build>
49
50     <dependencies>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>util</artifactId>
54         </dependency>
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-data-util</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>yang-model-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>yang-model-util</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>yang-binding</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>com.google.guava</groupId>
81             <artifactId>guava</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>junit</groupId>
85             <artifactId>junit</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.mockito</groupId>
90             <artifactId>mockito-core</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.slf4j</groupId>
94             <artifactId>slf4j-log4j12</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.codehaus.groovy</groupId>
99             <artifactId>groovy</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.codehaus.groovy</groupId>
104             <artifactId>groovy-xml</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>xmlunit</groupId>
109             <artifactId>xmlunit</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>yang-parser-impl</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>commons-lang</groupId>
119             <artifactId>commons-lang</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>com.google.code.findbugs</groupId>
123             <artifactId>jsr305</artifactId>
124         </dependency>
125     </dependencies>
126 </project>