blob: 7370f4bc902bf9e88339679af4c71639333ff193 [file] [log] [blame]
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +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 Ziegeler051927a2007-08-24 09:15:34 +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">
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000021 <modelVersion>4.0.0</modelVersion>
22 <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>
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000027 </parent>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000028
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000029 <properties>
30 <pkgArtifactId>commons-attributes-compiler</pkgArtifactId>
31 <pkgVersion>2.2</pkgVersion>
32 <pomVersion>0001</pomVersion>
33 <osgiVersion>${pkgVersion}.0</osgiVersion>
34 </properties>
35 <groupId>org.apache.felix.commons</groupId>
36 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
37 <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
38 <packaging>bundle</packaging>
39 <name>${pkgArtifactId} bundle</name>
40 <description>
41 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
42 </description>
43 <organization>
44 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000045 <url>http://felix.apache.org/</url>
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000046 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000047 <scm>
Carsten Ziegeler08d11b72007-08-22 06:46:55 +000048 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-attributes-compiler</connection>
49 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-attributes-compiler</developerConnection>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000050 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-attributes-compiler</url>
51 </scm>
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000052 <dependencies>
53 <dependency>
54 <groupId>commons-attributes</groupId>
55 <artifactId>${pkgArtifactId}</artifactId>
56 <version>${pkgVersion}</version>
57 <exclusions>
58 <exclusion>
59 <groupId>commons-attributes</groupId>
60 <artifactId>commons-attributes-api</artifactId>
61 </exclusion>
62 </exclusions>
63 </dependency>
64 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000069 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000070 <version>1.2.1</version>
Michael E. Rodrigueza25834d2007-03-14 04:28:51 +000071 <extensions>true</extensions>
72 <configuration>
73 <instructions>
74 <Bundle-SymbolicName>
75 ${pom.artifactId}
76 </Bundle-SymbolicName>
77 <Export-Package>*;version=${pkgVersion}</Export-Package>
78 <Import-Package>
79 com.sun.javadoc.*;resolution:=optional, *
80 </Import-Package>
81 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86</project>