Bump versions to 4.0.3-SNAPSHOT
[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.3-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                     <visitor>true</visitor>
40                     <listener>true</listener>
41                 </configuration>
42             </plugin>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Automatic-Module-Name>org.opendaylight.yangtools.yang.data.impl</Automatic-Module-Name>
50                         <Export-Package>
51                             {local-packages},
52                             org.opendaylight.yangtools.yang.data.impl.*,
53                             ;-split-package:=error
54                         </Export-Package>
55                         <Bundle-Activator>org.opendaylight.yangtools.yang.data.impl.osgi.Activator</Bundle-Activator>
56                     </instructions>
57                 </configuration>
58             </plugin>
59         </plugins>
60     </build>
61
62     <dependencies>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>util</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-common</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-data-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-data-util</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>yang-model-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-model-util</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>rfc7952-data-util</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>rfc8528-data-util</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.google.guava</groupId>
97             <artifactId>guava</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.antlr</groupId>
101             <artifactId>antlr4-runtime</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>javax.xml.bind</groupId>
105             <artifactId>jaxb-api</artifactId>
106         </dependency>
107
108         <dependency>
109             <groupId>org.kohsuke.metainf-services</groupId>
110             <artifactId>metainf-services</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.osgi</groupId>
114             <artifactId>org.osgi.core</artifactId>
115         </dependency>
116
117         <dependency>
118             <groupId>org.slf4j</groupId>
119             <artifactId>slf4j-log4j12</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.xmlunit</groupId>
124             <artifactId>xmlunit-legacy</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>yang-parser-impl</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.yangtools</groupId>
133             <artifactId>yang-test-util</artifactId>
134             <scope>test</scope>
135         </dependency>
136     </dependencies>
137
138 </project>