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