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