blob: edfd82785a226f31cba1ef143e7c6ea810203187 [file] [log] [blame]
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000022 <parent>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000023 <groupId>org.apache.felix</groupId>
24 <artifactId>felix</artifactId>
25 <version>1.0.2</version>
26 <relativePath>../../pom</relativePath>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000027 </parent>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000028
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000029 <properties>
Carsten Ziegelerbd3ed0e2007-08-06 07:30:38 +000030 <pkgArtifactId>poi-full</pkgArtifactId>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000031 <pkgVersion>3.0.1-FINAL</pkgVersion>
Carsten Ziegelerb446d432007-08-22 07:17:42 +000032 <pomVersion>0002</pomVersion>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000033 <osgiVersion>${pkgVersion}</osgiVersion>
34 </properties>
35
36 <groupId>org.apache.felix.commons</groupId>
37 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegelerb446d432007-08-22 07:17:42 +000038 <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000039 <packaging>bundle</packaging>
40 <name>${pkgArtifactId} bundle</name>
41 <description>
Carsten Ziegelerbd3ed0e2007-08-06 07:30:38 +000042 This bundle simply wraps poi-${pkgVersion}.jar, poi-contrib-${pkgVersion}.jar and poi-scratchpad-${pkgVersion}.jar.
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000043 </description>
44 <organization>
45 <name>Apache Felix Project</name>
Carsten Ziegelerbd3ed0e2007-08-06 07:30:38 +000046 <url>http://felix.apache.org/</url>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000047 </organization>
48
49 <scm>
Carsten Ziegelerff856592007-08-22 07:05:03 +000050 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/poi-full</connection>
51 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/poi-full</developerConnection>
52 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/poi-full</url>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000053 </scm>
54
55 <dependencies>
56 <dependency>
57 <groupId>org.apache.poi</groupId>
Carsten Ziegelerbd3ed0e2007-08-06 07:30:38 +000058 <artifactId>poi</artifactId>
59 <version>${pkgVersion}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.poi</groupId>
63 <artifactId>poi-contrib</artifactId>
64 <version>${pkgVersion}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.poi</groupId>
68 <artifactId>poi-scratchpad</artifactId>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000069 <version>${pkgVersion}</version>
70 </dependency>
71 </dependencies>
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000077 <version>1.2.1</version>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000078 <extensions>true</extensions>
79 <configuration>
80 <instructions>
81 <Bundle-SymbolicName>
82 ${pom.artifactId}
83 </Bundle-SymbolicName>
84 <Export-Package>
85 *;version=${pkgVersion}
86 </Export-Package>
Carsten Ziegelerbd3ed0e2007-08-06 07:30:38 +000087 <Include-Resource>
88 src/main/resources,
89 @poi-${pkgVersion}.jar!/font_metrics.properties
90 </Include-Resource>
Carsten Ziegelerb5d6dcc2007-08-03 13:03:08 +000091 </instructions>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
96</project>