Carsten Ziegeler | 0d9d641 | 2007-09-24 15:43:39 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 19 | <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"> |
Carsten Ziegeler | 0d9d641 | 2007-09-24 15:43:39 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 24 | <version>1.0.4</version> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 25 | <relativePath>../../pom</relativePath> |
Carsten Ziegeler | 0d9d641 | 2007-09-24 15:43:39 +0000 | [diff] [blame] | 26 | </parent> |
Carsten Ziegeler | d524f6f | 2008-01-16 07:28:57 +0000 | [diff] [blame] | 27 | |
Carsten Ziegeler | 0d9d641 | 2007-09-24 15:43:39 +0000 | [diff] [blame] | 28 | <properties> |
| 29 | <pkgArtifactId>quartz</pkgArtifactId> |
| 30 | <pkgVersion>1.5.2</pkgVersion> |
| 31 | <pomVersion>0001</pomVersion> |
| 32 | <osgiVersion>${pkgVersion}</osgiVersion> |
| 33 | </properties> |
| 34 | |
| 35 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 36 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
| 37 | <packaging>bundle</packaging> |
| 38 | <name>${pkgArtifactId} bundle</name> |
| 39 | <description> |
| 40 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
| 41 | </description> |
| 42 | <organization> |
| 43 | <name>Apache Felix Project</name> |
| 44 | <url>http://felix.apache.org/</url> |
| 45 | </organization> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>quartz</groupId> |
| 50 | <artifactId>${pkgArtifactId}</artifactId> |
| 51 | <version>${pkgVersion}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>commons-pool</groupId> |
| 55 | <artifactId>commons-pool</artifactId> |
| 56 | <version>1.3</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>commons-dbcp</groupId> |
| 60 | <artifactId>commons-dbcp</artifactId> |
| 61 | <version>1.2.2</version> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 70 | <version>1.4.0</version> |
Carsten Ziegeler | 0d9d641 | 2007-09-24 15:43:39 +0000 | [diff] [blame] | 71 | <extensions>true</extensions> |
| 72 | <configuration> |
| 73 | <instructions> |
| 74 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 75 | <Export-Package>org.quartz.*;version=${pkgVersion}</Export-Package> |
| 76 | <Private-Package> |
| 77 | org.apache.commons.pool.*, |
| 78 | org.apache.commons.jocl.*, |
| 79 | org.apache.commons.dbcp.* |
| 80 | </Private-Package> |
| 81 | <DynamicImport-Package> |
| 82 | javax.ejb |
| 83 | </DynamicImport-Package> |
| 84 | <Include-Resource> |
| 85 | src/main/resources, |
| 86 | @quartz-1.5.2.jar!/** |
| 87 | </Include-Resource> |
| 88 | </instructions> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | </project> |