Merge changes I6265d077,I0be9473e,If481ebdb
[yangtools.git] / third-party / xtend-lib-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>xtend-lib-osgi</artifactId>
19     <version>2.4.3</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>Xtend Runtime Library</Bundle-Name>
31                         <Bundle-SymbolicName>org.eclipse.xtend.lib</Bundle-SymbolicName>
32                         <Import-Package>
33                         com.google.common.base;version="[10.0.1,16)",
34                         com.google.common.collect;version="[10.0.1,16)",
35                         com.google.common.primitives;version="[10.0.1,16)"
36                         </Import-Package>
37                     </instructions>
38                 </configuration>
39             </plugin>
40         </plugins>
41     </build>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.eclipse.xtend</groupId>
46             <artifactId>org.eclipse.xtend.lib</artifactId>
47             <version>2.4.3</version>
48         </dependency>
49         <dependency>
50             <groupId>org.eclipse.xtext</groupId>
51             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
52             <version>2.4.3</version>
53         </dependency>
54         <dependency>
55             <groupId>com.google.guava</groupId>
56             <artifactId>guava</artifactId>
57             <version>[10.0.1,15.0)</version>
58             <scope>provided</scope>
59         </dependency>
60     </dependencies>
61 </project>