<?xml version="1.0" encoding="UTF-8"?>
<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">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.roo</groupId>
		<artifactId>org.springframework.roo.root</artifactId>
		<version>1.1.1.RELEASE</version>
	</parent>
	<artifactId>wrapping</artifactId>
	<packaging>pom</packaging>
	<name>Spring Roo - Wrapping</name>
    <description>Automates the conversion of standard JARs into OSGi bundles for Spring Roo usage.</description>

    <modules>
        <module>json-simple</module>
        <module>protobuf</module>
        <module>jline</module>
        <module>inflector</module>
        <module>javaparser</module>
        <module>bcprov-jdk15</module>
        <module>bcpg-jdk15</module>
        <module>postgresql</module>
		<module>hsqldb</module>
		<module>jtds</module>
		<module>jtopen</module>
 		<module>hapax</module>
		<module>mysql</module>
		<module>firebird</module>
		<module>h2</module>
		<module>derby</module>
    	<module>jsch</module>
  		<module>jgit</module>
	</modules>

    <repositories>
        <repository>
            <id>maven.springframework.org.external</id>
            <name>SpringSource Maven Repository - External Releases</name>
            <url>http://maven.springframework.org/external</url>
        </repository>
    </repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.1.0</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
                        <Export-Package>*;version=${pom.version}</Export-Package>
                        <Bundle-Vendor>${pkgVendor} (wrapped into an OSGi bundle by the Spring Roo project build system)</Bundle-Vendor>
                        <Bundle-DocURL>${pkgDocUrl}</Bundle-DocURL>
                        <Bundle-License>${pkgLicense}</Bundle-License>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

