Carsten Ziegeler | fff8079 | 2007-08-22 06:49:31 +0000 | [diff] [blame^] | 1 | <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. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <groupId>org.apache.felix.commons</groupId> |
Carsten Ziegeler | ef09a2c | 2007-07-24 09:39:40 +0000 | [diff] [blame] | 5 | <artifactId>commons-build</artifactId> |
Carsten Ziegeler | 08d11b7 | 2007-08-22 06:46:55 +0000 | [diff] [blame] | 6 | <version>1.0.0</version> |
Carsten Ziegeler | 7baa52a | 2007-07-24 09:31:07 +0000 | [diff] [blame] | 7 | <relativePath>../pom</relativePath> |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 8 | </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 Ziegeler | fff8079 | 2007-08-22 06:49:31 +0000 | [diff] [blame^] | 17 | <version>1.1.0-0001</version> |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 18 | <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 Pauls | 5a105ac | 2007-06-18 20:54:19 +0000 | [diff] [blame] | 25 | <url>http://felix.apache.org/</url> |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 26 | </organization> |
Carsten Ziegeler | 7a79dfb | 2007-07-24 07:08:51 +0000 | [diff] [blame] | 27 | <scm> |
Carsten Ziegeler | fff8079 | 2007-08-22 06:49:31 +0000 | [diff] [blame^] | 28 | <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 Ziegeler | 7a79dfb | 2007-07-24 07:08:51 +0000 | [diff] [blame] | 31 | </scm> |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 32 | <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. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 43 | <artifactId>maven-bundle-plugin</artifactId> |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 44 | <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 Ziegeler | 29faca3 | 2007-07-25 10:09:10 +0000 | [diff] [blame] | 58 | src/main/resources, |
Michael E. Rodriguez | bf81f82 | 2007-03-14 04:15:41 +0000 | [diff] [blame] | 59 | @${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 Ziegeler | fff8079 | 2007-08-22 06:49:31 +0000 | [diff] [blame^] | 68 | </project> |