Merge "Improved sorting of augmentations before code generation."
[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>util</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>yang-common</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>yang-data-api</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.slf4j</groupId>
90             <artifactId>slf4j-log4j12</artifactId>
91             <version>${slf4j.version}</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.codehaus.groovy</groupId>
96             <artifactId>groovy</artifactId>
97             <version>${groovy.version}</version>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.codehaus.groovy</groupId>
102             <artifactId>groovy-xml</artifactId>
103             <version>${groovy.version}</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>xmlunit</groupId>
108             <artifactId>xmlunit</artifactId>
109             <version>1.5</version>
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             <version>2.6</version>
121         </dependency>
122     </dependencies>
123 </project>