Remove references to controller.git
[yangtools.git] / third-party / antlr4-runtime-osgi / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
6         <artifactId>third-party-parent</artifactId>
7         <version>0.1.2</version>
8     </parent>
9     <artifactId>antlr4-runtime-osgi-nohead</artifactId>
10     <version>4.0</version>
11     <packaging>bundle</packaging>
12
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.apache.felix</groupId>
17                 <artifactId>maven-bundle-plugin</artifactId>
18                 <extensions>true</extensions>
19                 <configuration>
20                     <instructions>
21                         <Bundle-Name>Antlr4 Runtime Library</Bundle-Name>
22                         <Bundle-SymbolicName>org.antlr.antlr4</Bundle-SymbolicName>
23                         <Export-Package>
24                             org.antlr.v4.runtime,
25                             org.antlr.v4.runtime.atn,
26                             org.antlr.v4.runtime.dfa,
27                             org.antlr.v4.runtime.misc,
28                             org.antlr.v4.runtime.tree
29                         </Export-Package>
30                         <Import-Package></Import-Package>
31                     </instructions>
32                 </configuration>
33             </plugin>
34         </plugins>
35     </build>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.antlr</groupId>
40             <artifactId>antlr4-runtime</artifactId>
41             <version>4.0</version>
42             <exclusions>
43               <exclusion>
44                 <!--  UI Related Dependency -->
45                 <artifactId>org.abego.treelayout.core</artifactId>
46                 <groupId>org.abego.treelayout</groupId>
47               </exclusion>
48             </exclusions>
49         </dependency>
50     </dependencies>
51 </project>