Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[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
14     <parent>
15         <groupId>org.opendaylight.yangtools</groupId>
16         <artifactId>third-party-parent</artifactId>
17         <version>0.7.0-SNAPSHOT</version>
18         <relativePath>../pom.xml</relativePath>
19     </parent>
20
21     <artifactId>antlr4-runtime-osgi-nohead</artifactId>
22     <version>4.0</version>
23     <packaging>bundle</packaging>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.felix</groupId>
29                 <artifactId>maven-bundle-plugin</artifactId>
30                 <extensions>true</extensions>
31                 <configuration>
32                     <instructions>
33                         <Bundle-Name>Antlr4 Runtime Library</Bundle-Name>
34                         <Bundle-SymbolicName>org.antlr.antlr4</Bundle-SymbolicName>
35                         <Export-Package>
36                             org.antlr.v4.runtime,
37                             org.antlr.v4.runtime.atn,
38                             org.antlr.v4.runtime.dfa,
39                             org.antlr.v4.runtime.misc,
40                             org.antlr.v4.runtime.tree
41                         </Export-Package>
42                         <Import-Package></Import-Package>
43                     </instructions>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48
49     <dependencies>
50         <dependency>
51             <groupId>org.antlr</groupId>
52             <artifactId>antlr4-runtime</artifactId>
53             <version>4.0</version>
54             <exclusions>
55               <exclusion>
56                 <!--  UI Related Dependency -->
57                 <artifactId>org.abego.treelayout.core</artifactId>
58                 <groupId>org.abego.treelayout</groupId>
59               </exclusion>
60             </exclusions>
61         </dependency>
62     </dependencies>
63 </project>