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