bug 1128:POM Restructuring for Automated Release
[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</groupId>
15         <artifactId>third-party-parent</artifactId>
16         <version>0.6.2-SNAPSHOT</version>
17         <relativePath>../pom.xml</relativePath>
18     </parent>
19
20     <artifactId>xtend-lib-osgi</artifactId>
21     <version>2.4.3</version>
22     <packaging>bundle</packaging>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.felix</groupId>
28                 <artifactId>maven-bundle-plugin</artifactId>
29                 <extensions>true</extensions>
30                 <configuration>
31                     <instructions>
32                         <Bundle-Name>Xtend Runtime Library</Bundle-Name>
33                         <Bundle-SymbolicName>org.eclipse.xtend.lib</Bundle-SymbolicName>
34                         <Import-Package>
35                         com.google.common.base;version="[10.0.1,16)",
36                         com.google.common.collect;version="[10.0.1,16)",
37                         com.google.common.primitives;version="[10.0.1,16)"
38                         </Import-Package>
39                     </instructions>
40                 </configuration>
41             </plugin>
42         </plugins>
43     </build>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.eclipse.xtend</groupId>
48             <artifactId>org.eclipse.xtend.lib</artifactId>
49             <version>2.4.3</version>
50         </dependency>
51         <dependency>
52             <groupId>org.eclipse.xtext</groupId>
53             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
54             <version>2.4.3</version>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59             <version>[10.0.1,15.0)</version>
60             <scope>provided</scope>
61         </dependency>
62     </dependencies>
63 </project>