blob: 60700bbef549d6b1310774e64ff046f73a291aa6 [file] [log] [blame]
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +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-->
Carsten Ziegelerce2d4a72007-08-22 07:06:44 +000020<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 Ziegelerd524f6f2008-01-16 07:28:57 +000021 <modelVersion>4.0.0</modelVersion>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +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 Ziegeler7baa52a2007-07-24 09:31:07 +000027 </parent>
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000028
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000029 <properties>
30 <pkgArtifactId>xml-apis</pkgArtifactId>
31 <pkgVersion>1.3.4</pkgVersion>
32 <realPkgVersion>1.3.04</realPkgVersion>
33 <pomVersion>0002</pomVersion>
34 <osgiVersion>${pkgVersion}</osgiVersion>
35 </properties>
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000036
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000037 <groupId>org.apache.felix.commons</groupId>
38 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
39 <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
40 <packaging>bundle</packaging>
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000041
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000042 <name>${pkgArtifactId} bundle</name>
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000043 <description>
44 This bundle simply wraps ${pkgArtifactId}-${realPkgVersion}.jar.
45 </description>
46
47 <organization>
48 <name>Apache Felix Project</name>
49 <url>http://felix.apache.org/</url>
50 </organization>
51
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000052 <scm>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000053 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/xml-apis</connection>
54 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/xml-apis</developerConnection>
55 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/xml-apis</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000056 </scm>
57
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000058 <dependencies>
59 <dependency>
60 <groupId>${pkgArtifactId}</groupId>
61 <artifactId>${pkgArtifactId}</artifactId>
62 <version>${realPkgVersion}</version>
63 </dependency>
64 <dependency>
65 <groupId>xalan</groupId>
66 <artifactId>xalan</artifactId>
67 <version>2.7.0</version>
68 </dependency>
69 <dependency>
70 <groupId>xerces</groupId>
71 <artifactId>xercesImpl</artifactId>
72 <version>2.8.1</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.bcel</groupId>
76 <artifactId>bcel</artifactId>
77 <version>5.2</version>
78 </dependency>
79 <dependency>
80 <groupId>xml-resolver</groupId>
81 <artifactId>xml-resolver</artifactId>
82 <version>1.2</version>
83 </dependency>
84 </dependencies>
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000090 <version>1.2.1</version>
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +000091 <extensions>true</extensions>
92 <configuration>
93 <instructions>
94 <Bundle-SymbolicName>
95 ${pom.artifactId}
96 </Bundle-SymbolicName>
97 <Import-Package>org.xml.sax.*, org.w3c.dom.*, javax.xml.*, org.apache.xml.resolver.*,javax.swing,javax.swing.border,javax.swing.event</Import-Package>
98 <Export-Package>
99 org.xml.sax.*, org.w3c.dom.*, javax.xml.*, org.apache.xml.resolver.*
100 </Export-Package>
101 <Private-Package>
102 org.apache.xalan.*,org.apache.xml.*,org.apache.xpath.*,org.apache.html.dom,
103 org.apache.wml.*,org.apache.xerces.*,java_cup.runtime,
104 org.apache.bcel.*,org.apache.env.*
105 </Private-Package>
106 <Include-Resource>
Carsten Ziegeler27100a82007-07-25 08:59:58 +0000107 src/main/resources,
Carsten Ziegeleref0b5c62007-07-04 17:06:50 +0000108 @xercesImpl-2.8.1.jar!/META-INF/services/**,
109 @xalan-2.7.0.jar!/META-INF/services/**
110 </Include-Resource>
111 <DynamicImport-Package>javax.naming</DynamicImport-Package>
112 </instructions>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
Karl Pauls0a3858c2007-07-13 22:03:31 +0000117</project>