blob: 6c66745ac2cb2fcb96336009c454e46fc3da3397 [file] [log] [blame]
Carsten Ziegelerfff80792007-08-22 06:49:31 +00001<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. Rodriguezbf81f822007-03-14 04:15:41 +00002 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +00005 <artifactId>commons-build</artifactId>
Carsten Ziegeler08d11b72007-08-22 06:46:55 +00006 <version>1.0.0</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +00007 <relativePath>../pom</relativePath>
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +00008 </parent>
9 <properties>
10 <pkgArtifactId>activation</pkgArtifactId>
11 <pkgVersion>1.1</pkgVersion>
12 <pomVersion>0001</pomVersion>
13 <osgiVersion>${pkgVersion}.0</osgiVersion>
14 </properties>
15 <groupId>org.apache.felix.commons</groupId>
16 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegelerfff80792007-08-22 06:49:31 +000017 <version>1.1.0-0001</version>
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +000018 <packaging>bundle</packaging>
19 <name>${pkgArtifactId} bundle</name>
20 <description>
21 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
22 </description>
23 <organization>
24 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000025 <url>http://felix.apache.org/</url>
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +000026 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000027 <scm>
Carsten Ziegelerfff80792007-08-22 06:49:31 +000028 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.commons.activation-1.1.0-0001</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.commons.activation-1.1.0-0001</developerConnection>
30 <url>http://svn.apache.org/viewcvs/felix/releases/org.apache.felix.commons.activation-1.1.0-0001</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000031 </scm>
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +000032 <dependencies>
33 <dependency>
34 <groupId>javax.activation</groupId>
35 <artifactId>${pkgArtifactId}</artifactId>
36 <version>${pkgVersion}</version>
37 </dependency>
38 </dependencies>
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000043 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-SymbolicName>
48 ${pom.artifactId}
49 </Bundle-SymbolicName>
50 <Export-Package>
51 javax.activation;version=${pkgVersion}
52 </Export-Package>
53 <Private-Package>
54 com.sun.activation.registries,
55 com.sun.activation.viewers
56 </Private-Package>
57 <Include-Resource>
Carsten Ziegeler29faca32007-07-25 10:09:10 +000058 src/main/resources,
Michael E. Rodriguezbf81f822007-03-14 04:15:41 +000059 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/LICENSE.txt,
60 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/mailcap.default,
61 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/mimetypes.default
62 </Include-Resource>
63 </instructions>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
Carsten Ziegelerfff80792007-08-22 06:49:31 +000068</project>