Remove references to controller.git
[yangtools.git] / third-party / xtend-lib-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>xtend-lib-osgi</artifactId>
10     <version>2.4.3</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>Xtend Runtime Library</Bundle-Name>
22                         <Bundle-SymbolicName>org.eclipse.xtend.lib</Bundle-SymbolicName>
23                         <Import-Package>
24                         com.google.common.base;version="[10.0.1,16)",
25                         com.google.common.collect;version="[10.0.1,16)",
26                         com.google.common.primitives;version="[10.0.1,16)"
27                         </Import-Package>
28                     </instructions>
29                 </configuration>
30             </plugin>
31         </plugins>
32     </build>
33
34     <dependencies>
35         <dependency>
36             <groupId>org.eclipse.xtend</groupId>
37             <artifactId>org.eclipse.xtend.lib</artifactId>
38             <version>2.4.3</version>
39         </dependency>
40         <dependency>
41             <groupId>org.eclipse.xtext</groupId>
42             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
43             <version>2.4.3</version>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48             <version>[10.0.1,15.0)</version>
49             <scope>provided</scope>
50         </dependency>
51     </dependencies>
52 </project>