blob: 6f6c6a38c1635a567fdb8676ba186633eca9e89d [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<artifactId>gemini-blueprint-integration-test-bundles</artifactId>
<groupId>org.eclipse.gemini.blueprint.iandt</groupId>
<version>1.0.0.RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.gemini.blueprint.iandt</groupId>
<artifactId>config.bundle</artifactId>
<packaging>pom</packaging>
<name>Gemini Blueprint Test Bundle: Integration testing bundles for configuration options</name>
<url>http://www.eclipse.org/gemini/blueprint/</url>
<properties>
<!-- root, empty package -->
<!-- plugin not yet enabled to avoid further problems -->
<spring.osgi.import.pkg>!org.eclipse.gemini.blueprint.iandt, *</spring.osgi.import.pkg>
<spring.osgi.export.pkg>${pom.artifactId}*</spring.osgi.export.pkg>
</properties>
<!-- shared dependencies -->
<dependencies>
<dependency>
<groupId>org.eclipse.gemini.blueprint</groupId>
<artifactId>gemini-blueprint-core</artifactId>
<version>${project.parent.version}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>no.publish.bundle</module>
<module>async.nowait.bundle</module>
<module>async.wait.bundle</module>
<module>sync.nowait.bundle</module>
<module>sync.tail.bundle</module>
<module>sync.wait.bundle</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<!-- the above doesn't work, so we spell it out in full below
<reporting>
<excludeDefaults>true</excludeDefaults>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<inherited>true</inherited>
<reportSets>
<reportSet></reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>*</excludePackageNames>
</configuration>
</plugin>
</plugins>
</reporting>
-->
</project>