Michael E. Rodriguez | 0d76235 | 2007-02-26 20:57:31 +0000 | [diff] [blame] | 1 | <project |
| 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.apache.felix.commons</groupId> |
| 9 | <artifactId>build</artifactId> |
| 10 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.apache.felix.commons</groupId> |
| 14 | <artifactId>jzlib-osgi</artifactId> |
| 15 | <version>1.0.7</version> |
| 16 | <packaging>bundle</packaging> |
| 17 | |
| 18 | <name>${pom.artifactId} bundle</name> |
| 19 | <description> |
| 20 | This bundle simply wraps jzlib-${pom.version}.jar. |
| 21 | </description> |
| 22 | |
| 23 | <organization> |
| 24 | <name>Apache Felix Project</name> |
| 25 | <url>http://incubator.apache.org/felix/</url> |
| 26 | </organization> |
| 27 | |
| 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>com.jcraft</groupId> |
| 31 | <artifactId>jzlib</artifactId> |
| 32 | <version>${pom.version}</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | |
| 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 45 | <Export-Package>!META-INF.*,*</Export-Package> |
| 46 | <Import-Package>!*</Import-Package> |
| 47 | </instructions> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | </project> |