Merge "Remove executable bit"
[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-model-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>yang-model-util</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>yang-binding</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>com.google.guava</groupId>
77             <artifactId>guava</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.slf4j</groupId>
86             <artifactId>slf4j-log4j12</artifactId>
87             <version>${slf4j.version}</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.codehaus.groovy</groupId>
92             <artifactId>groovy</artifactId>
93             <version>${groovy.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.codehaus.groovy</groupId>
98             <artifactId>groovy-xml</artifactId>
99             <version>${groovy.version}</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>xmlunit</groupId>
104             <artifactId>xmlunit</artifactId>
105             <version>1.5</version>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>yang-parser-impl</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>commons-lang</groupId>
115             <artifactId>commons-lang</artifactId>
116             <version>2.6</version>
117         </dependency>
118     </dependencies>
119 </project>