Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 1 | <?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" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.apache.felix.commons</groupId> |
| 26 | <artifactId>build</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame^] | 27 | <version>0.9.0-SNAPSHOT</version> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 28 | </parent> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 29 | <properties> |
| 30 | <pkgArtifactId>antlr</pkgArtifactId> |
| 31 | <pkgVersion>2.7.6</pkgVersion> |
| 32 | <pomVersion>0001</pomVersion> |
| 33 | <osgiVersion>${pkgVersion}</osgiVersion> |
| 34 | </properties> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 35 | <groupId>org.apache.felix.commons</groupId> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 36 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 37 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 38 | <packaging>bundle</packaging> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 39 | <name>${pkgArtifactId} bundle</name> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 40 | <description> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 41 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 42 | </description> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 43 | <organization> |
| 44 | <name>Apache Felix Project</name> |
Karl Pauls | 5a105ac | 2007-06-18 20:54:19 +0000 | [diff] [blame] | 45 | <url>http://felix.apache.org/</url> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 46 | </organization> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>antlr</groupId> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 50 | <artifactId>${pkgArtifactId}</artifactId> |
| 51 | <version>${pkgVersion}</version> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 52 | </dependency> |
| 53 | </dependencies> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 58 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame^] | 59 | <version>1.1.0-SNAPSHOT</version> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 60 | <extensions>true</extensions> |
| 61 | <configuration> |
| 62 | <instructions> |
Michael E. Rodriguez | 20dfdb3 | 2007-03-14 03:54:24 +0000 | [diff] [blame] | 63 | <Bundle-SymbolicName> |
| 64 | ${pom.artifactId} |
| 65 | </Bundle-SymbolicName> |
| 66 | <Export-Package>*;version=${pkgVersion}</Export-Package> |
Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 67 | <Import-Package>!javax.*</Import-Package> |
| 68 | </instructions> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | </project> |