Do not override surefire version
[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                 <configuration>
29                 <argLine>-Dlog4j.configuration=log4j-test.xml
30                     -Xmx1500m ${jacoco.agent.ut.arg}</argLine>
31                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
32                 </configuration>
33             </plugin>
34             <plugin>
35                 <groupId>org.apache.felix</groupId>
36                 <artifactId>maven-bundle-plugin</artifactId>
37                 <extensions>true</extensions>
38                 <configuration>
39                     <instructions>
40                         <Export-Package>
41                             org.opendaylight.yangtools.yang.data.impl.*
42                         </Export-Package>
43                     </instructions>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48
49     <dependencies>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>util</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>yang-common</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>yang-data-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>yang-data-util</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>yang-model-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>yang-model-util</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>yang-binding</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>junit</groupId>
84             <artifactId>junit</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.mockito</groupId>
89             <artifactId>mockito-core</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.slf4j</groupId>
93             <artifactId>slf4j-log4j12</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.codehaus.groovy</groupId>
98             <artifactId>groovy</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.codehaus.groovy</groupId>
103             <artifactId>groovy-xml</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>xmlunit</groupId>
108             <artifactId>xmlunit</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}</groupId>
113             <artifactId>yang-parser-impl</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>commons-lang</groupId>
118             <artifactId>commons-lang</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>com.google.code.findbugs</groupId>
122             <artifactId>jsr305</artifactId>
123         </dependency>
124     </dependencies>
125 </project>