blob: 928935c25af976ba58b7bb7c4752df641d89a1a4 [file]
<?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.apache.continuum</groupId>
<artifactId>continuum-plugins</artifactId>
<version>1.4-SNAPSHOT</version>
</parent>
<artifactId>continuum-plugin-api</artifactId>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.apache.continuum</groupId>
<artifactId>continuum-model</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.apache.continuum.plugin.api*</Export-Package>
<Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>