BUG-582: do not call hashCode() from IdentifiableItem.equals()
[yangtools.git] / third-party / antlr4-runtime-osgi / 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"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
15         <artifactId>third-party-parent</artifactId>
16         <version>0.1.2</version>
17     </parent>
18     <artifactId>antlr4-runtime-osgi-nohead</artifactId>
19     <version>4.0</version>
20     <packaging>bundle</packaging>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.apache.felix</groupId>
26                 <artifactId>maven-bundle-plugin</artifactId>
27                 <extensions>true</extensions>
28                 <configuration>
29                     <instructions>
30                         <Bundle-Name>Antlr4 Runtime Library</Bundle-Name>
31                         <Bundle-SymbolicName>org.antlr.antlr4</Bundle-SymbolicName>
32                         <Export-Package>
33                             org.antlr.v4.runtime,
34                             org.antlr.v4.runtime.atn,
35                             org.antlr.v4.runtime.dfa,
36                             org.antlr.v4.runtime.misc,
37                             org.antlr.v4.runtime.tree
38                         </Export-Package>
39                         <Import-Package></Import-Package>
40                     </instructions>
41                 </configuration>
42             </plugin>
43         </plugins>
44     </build>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.antlr</groupId>
49             <artifactId>antlr4-runtime</artifactId>
50             <version>4.0</version>
51             <exclusions>
52               <exclusion>
53                 <!--  UI Related Dependency -->
54                 <artifactId>org.abego.treelayout.core</artifactId>
55                 <groupId>org.abego.treelayout</groupId>
56               </exclusion>
57             </exclusions>
58         </dependency>
59     </dependencies>
60 </project>