Carsten Ziegeler | ef0b5c6 | 2007-07-04 17:06:50 +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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 22 | |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.apache.felix.commons</groupId> |
| 27 | <artifactId>build</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 28 | <version>0.9.0-SNAPSHOT</version> |
Carsten Ziegeler | ef0b5c6 | 2007-07-04 17:06:50 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <properties> |
| 32 | <pkgArtifactId>xml-apis</pkgArtifactId> |
| 33 | <pkgVersion>1.3.4</pkgVersion> |
| 34 | <realPkgVersion>1.3.04</realPkgVersion> |
| 35 | <pomVersion>0001</pomVersion> |
| 36 | <osgiVersion>${pkgVersion}</osgiVersion> |
| 37 | </properties> |
| 38 | |
| 39 | <groupId>org.apache.felix.commons</groupId> |
| 40 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 41 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
| 42 | <packaging>bundle</packaging> |
| 43 | |
| 44 | <name>${pkgArtifactId} bundle</name> |
| 45 | <description> |
| 46 | This bundle simply wraps ${pkgArtifactId}-${realPkgVersion}.jar. |
| 47 | </description> |
| 48 | |
| 49 | <organization> |
| 50 | <name>Apache Felix Project</name> |
| 51 | <url>http://felix.apache.org/</url> |
| 52 | </organization> |
| 53 | |
| 54 | <dependencies> |
| 55 | <dependency> |
| 56 | <groupId>${pkgArtifactId}</groupId> |
| 57 | <artifactId>${pkgArtifactId}</artifactId> |
| 58 | <version>${realPkgVersion}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>xalan</groupId> |
| 62 | <artifactId>xalan</artifactId> |
| 63 | <version>2.7.0</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>xerces</groupId> |
| 67 | <artifactId>xercesImpl</artifactId> |
| 68 | <version>2.8.1</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.apache.bcel</groupId> |
| 72 | <artifactId>bcel</artifactId> |
| 73 | <version>5.2</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>xml-resolver</groupId> |
| 77 | <artifactId>xml-resolver</artifactId> |
| 78 | <version>1.2</version> |
| 79 | </dependency> |
| 80 | </dependencies> |
| 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.felix</groupId> |
| 85 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 86 | <version>1.1.0-SNAPSHOT</version> |
Carsten Ziegeler | ef0b5c6 | 2007-07-04 17:06:50 +0000 | [diff] [blame] | 87 | <extensions>true</extensions> |
| 88 | <configuration> |
| 89 | <instructions> |
| 90 | <Bundle-SymbolicName> |
| 91 | ${pom.artifactId} |
| 92 | </Bundle-SymbolicName> |
| 93 | <Import-Package>org.xml.sax.*, org.w3c.dom.*, javax.xml.*, org.apache.xml.resolver.*,javax.swing,javax.swing.border,javax.swing.event</Import-Package> |
| 94 | <Export-Package> |
| 95 | org.xml.sax.*, org.w3c.dom.*, javax.xml.*, org.apache.xml.resolver.* |
| 96 | </Export-Package> |
| 97 | <Private-Package> |
| 98 | org.apache.xalan.*,org.apache.xml.*,org.apache.xpath.*,org.apache.html.dom, |
| 99 | org.apache.wml.*,org.apache.xerces.*,java_cup.runtime, |
| 100 | org.apache.bcel.*,org.apache.env.* |
| 101 | </Private-Package> |
| 102 | <Include-Resource> |
| 103 | @xercesImpl-2.8.1.jar!/META-INF/services/**, |
| 104 | @xalan-2.7.0.jar!/META-INF/services/** |
| 105 | </Include-Resource> |
| 106 | <DynamicImport-Package>javax.naming</DynamicImport-Package> |
| 107 | </instructions> |
| 108 | </configuration> |
| 109 | </plugin> |
| 110 | </plugins> |
| 111 | </build> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 112 | </project> |