blob: c829b36339c128b35d9c540b7cb0665b1a35b195 [file] [log] [blame]
Carsten Ziegelerf95bfc42007-08-22 07:05:25 +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. Rodriguezecfe6452007-03-14 04:45:15 +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. Rodriguezecfe6452007-03-14 04:45:15 +00008 </parent>
9 <properties>
10 <pkgArtifactId>mail</pkgArtifactId>
11 <pkgVersion>1.4</pkgVersion>
12 <pomVersion>0001</pomVersion>
13 <osgiVersion>${pkgVersion}.0</osgiVersion>
Carsten Ziegeleraafb4102007-07-04 17:03:38 +000014 <activationVersion>1.1</activationVersion>
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000015 </properties>
16 <groupId>org.apache.felix.commons</groupId>
17 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegeler5cbd4e02007-08-22 07:05:37 +000018 <version>1.4.0-0002-SNAPSHOT</version>
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000019 <packaging>bundle</packaging>
20 <name>${pkgArtifactId} bundle</name>
21 <description>
22 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
23 </description>
24 <organization>
25 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000026 <url>http://felix.apache.org/</url>
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000027 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000028 <scm>
Carsten Ziegeler5cbd4e02007-08-22 07:05:37 +000029 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/mail</connection>
30 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/mail</developerConnection>
31 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/mail</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000032 </scm>
33
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000034 <dependencies>
35 <dependency>
36 <groupId>javax.mail</groupId>
37 <artifactId>${pkgArtifactId}</artifactId>
38 <version>${pkgVersion}</version>
39 </dependency>
Carsten Ziegeleraafb4102007-07-04 17:03:38 +000040 <dependency>
41 <groupId>javax.activation</groupId>
42 <artifactId>activation</artifactId>
43 <version>${activationVersion}</version>
44 </dependency>
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000045 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000050 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000051 <extensions>true</extensions>
52 <configuration>
53 <instructions>
54 <Bundle-SymbolicName>
55 ${pom.artifactId}
56 </Bundle-SymbolicName>
57 <Export-Package>
58 javax.mail;version=${pkgVersion},
59 javax.mail.event;version=${pkgVersion},
60 javax.mail.internet;version=${pkgVersion},
61 javax.mail.search;version=${pkgVersion},
62 javax.mail.util;version=${pkgVersion},
Carsten Ziegeleraafb4102007-07-04 17:03:38 +000063 javax.activation;version=${activationVersion},
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000064 com.sun.mail.imap;version=${pkgVersion},
65 com.sun.mail.pop3;version=${pkgVersion},
66 com.sun.mail.smtp;version=${pkgVersion}
67 </Export-Package>
68 <Private-Package>
69 com.sun.mail.handlers, com.sun.mail.iap,
Carsten Ziegeleraafb4102007-07-04 17:03:38 +000070 com.sun.mail.imap.protocol, com.sun.mail.util,
71 com.sun.activation.registries,
72 com.sun.activation.viewers
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000073 </Private-Package>
74 <Include-Resource>
Carsten Ziegeler29faca32007-07-25 10:09:10 +000075 src/main/resources,
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000076 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/LICENSE.txt,
77 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/javamail.charset.map,
78 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/javamail.default.address.map,
79 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/javamail.default.providers,
Carsten Ziegeleraafb4102007-07-04 17:03:38 +000080 @${pkgArtifactId}-${pkgVersion}.jar!/META-INF/mailcap,
81 @activation-${activationVersion}.jar!/META-INF/LICENSE.txt,
82 @activation-${activationVersion}.jar!/META-INF/mailcap.default,
83 @activation-${activationVersion}.jar!/META-INF/mimetypes.default
Michael E. Rodriguezecfe6452007-03-14 04:45:15 +000084 </Include-Resource>
85 </instructions>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
Carsten Ziegelerf95bfc42007-08-22 07:05:25 +000090</project>