org.apache.poi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ch.sbb.polarion.thirdparty.bundles</groupId>
<artifactId>org.apache.poi</artifactId>
<version>1.3.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ch.sbb.polarion.thirdparty.bundles</groupId>
<artifactId>bundles</artifactId>
<version>1.3.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<name>Custom Apache POI OSGi bundle</name>
<artifactId>org.apache.poi</artifactId>
<properties>
<poi-ooxml.version>5.3.0</poi-ooxml.version>
<Original-Bundle-Version>${poi-ooxml.version}</Original-Bundle-Version>
<Export-Package-Root>org.apache.poi</Export-Package-Root>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi-ooxml.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>