647b613d2a64f453acbd679de7e5bb034f7819ab
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.yangtools</groupId>
11         <artifactId>bundle-parent</artifactId>
12         <version>4.0.2-SNAPSHOT</version>
13         <relativePath>../../bundle-parent</relativePath>
14     </parent>
15
16     <artifactId>yang-data-impl</artifactId>
17     <packaging>bundle</packaging>
18     <name>${project.artifactId}</name>
19     <description>${project.artifactId}</description>
20
21     <properties>
22         <!-- FIXME: antlr-generated code does not pass SB -->
23         <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
24     </properties>
25
26     <build>
27         <plugins>
28             <plugin>
29                 <groupId>org.antlr</groupId>
30                 <artifactId>antlr4-maven-plugin</artifactId>
31                 <executions>
32                     <execution>
33                         <goals>
34                             <goal>antlr4</goal>
35                         </goals>
36                     </execution>
37                 </executions>
38                 <configuration>
39                     <sourceDirectory>${project.basedir}/src/main/antlr</sourceDirectory>
40                     <outputDirectory>${project.build.directory}/generated-sources/parser</outputDirectory>
41                     <visitor>true</visitor>
42                     <listener>true</listener>
43                 </configuration>
44             </plugin>
45             <plugin>
46                 <groupId>org.apache.felix</groupId>
47                 <artifactId>maven-bundle-plugin</artifactId>
48                 <extensions>true</extensions>
49                 <configuration>
50                     <instructions>
51                         <Automatic-Module-Name>org.opendaylight.yangtools.yang.data.impl</Automatic-Module-Name>
52                         <Export-Package>
53                             {local-packages},
54                             org.opendaylight.yangtools.yang.data.impl.*,
55                             ;-split-package:=error
56                         </Export-Package>
57                         <Bundle-Activator>org.opendaylight.yangtools.yang.data.impl.osgi.Activator</Bundle-Activator>
58                     </instructions>
59                 </configuration>
60             </plugin>
61         </plugins>
62     </build>
63
64     <dependencies>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>util</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-common</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-data-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-data-util</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-model-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-model-util</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>rfc7952-data-util</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>rfc8528-data-util</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>com.google.guava</groupId>
99             <artifactId>guava</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.antlr</groupId>
103             <artifactId>antlr4-runtime</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>javax.xml.bind</groupId>
107             <artifactId>jaxb-api</artifactId>
108         </dependency>
109
110         <dependency>
111             <groupId>org.kohsuke.metainf-services</groupId>
112             <artifactId>metainf-services</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.osgi</groupId>
116             <artifactId>org.osgi.core</artifactId>
117         </dependency>
118
119         <dependency>
120             <groupId>org.slf4j</groupId>
121             <artifactId>slf4j-log4j12</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.xmlunit</groupId>
126             <artifactId>xmlunit-legacy</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.yangtools</groupId>
130             <artifactId>yang-parser-impl</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.yangtools</groupId>
135             <artifactId>yang-test-util</artifactId>
136             <scope>test</scope>
137         </dependency>
138     </dependencies>
139
140 </project>