org.apache.poi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>hu.blackbelt.bundles.poi</groupId>
<artifactId>org.apache.poi</artifactId>
<version>5.4.1_2</version>
</dependency><?xml version="1.0" encoding="ISO-8859-1"?>
<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>
<version>5.4.1_2</version>
<properties>
<poi.version>5.4.1</poi.version>
<poi.schema.version>1.4</poi.schema.version>
<poi.security.version>1.1</poi.security.version>
<batik.version>1.16</batik.version>
</properties>
<groupId>hu.blackbelt.bundles.poi</groupId>
<artifactId>org.apache.poi</artifactId>
<packaging>bundle</packaging>
<name>Apache Poi</name>
<description>Apache POI</description>
<url>http://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<issueManagement>
<url>https://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/BlackBeltTechnology/osgi-repackaged-bundles.git</connection>
<!--suppress UnresolvedMavenProperty -->
<developerConnection>scm:git:ssh://${git.username}@github.com:BlackBeltTechnology/osgi-repackaged-bundles.git</developerConnection>
<url>http://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>robson</id>
<name>Robert Csakany</name>
<email>robert.csakany@blackbelt.hu</email>
<url>https://github.com/robertcsakany</url>
<organization>BlackBelt Technology</organization>
<organizationUrl>http://www.blackbelt.hu</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>sign-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-judong</id>
<distributionManagement>
<snapshotRepository>
<id>judong-nexus-distribution</id>
<!--suppress UnresolvedMavenProperty -->
<url>https://nexus.judo.technology/repository/maven-judong-snapshots/</url>
</snapshotRepository>
<repository>
<id>judong-nexus-distribution</id>
<!--suppress UnresolvedMavenProperty -->
<url>https://nexus.judo.technology/repository/maven-judong-snapshots/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-central</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.8</version>
<extensions>true</extensions>
<configuration>
<instructions>
<_exportcontents>
org.apache.poi*;version="${poi.version}",
org.openxmlformats.schemas*;version="${poi.version}",
com.microsoft.schemas*;version="${poi.version}"
</_exportcontents>
<Import-Package>
com.sun.javadoc;resolution:=optional,
com.sun.tools.javadoc;resolution:=optional,
org.apache.crimson.jaxp;resolution:=optional,
org.apache.tools.ant;resolution:=optional,
org.apache.tools.ant.taskdefs;resolution:=optional,
org.apache.tools.ant.types;resolution:=optional,
org.apache.xml.security.*;resolution:=optional,
org.apache.jcp.xml.dsig.internal.dom.*;resolution:=optional,
com.graphbuilder.curve.*;resolution:=optional,
com.graphbuilder.geom.*;resolution:=optional,
org.apache.batik.ext.awt.*;resolution:=optional,
org.mozilla.javascript.*;resolution:=optional,
org.python.core.*;resolution:=optional,
org.python.util.*;resolution:=optional,
org.w3c.dom.smil.*;resolution:=optional,
org.w3c.dom.svg.*;resolution:=optional,
org.apache.xerces.parsers;resolution:=optional,
org.apache.xml.utils;resolution:=optional,
org.apache.xpath;resolution:=optional,
org.apache.xpath.objects;resolution:=optional,
de.rototor.pdfbox.graphics2d;resolution:=optional,
org.apache.batik.svggen;resolution:=optional,
org.apache.pdfbox.pdmodel.*;resolution:=optional,
*
</Import-Package>
<DynamicImport-Package>
org.apache.xmlbeans.*,
schemaorg_apache_xmlbeans.*
</DynamicImport-Package>
<!-- bundle supplied resource prefixes -->
<Include-Resource>{maven-resources}</Include-Resource>
<!-- Do not inline jars, include as jar files -->
<!-- There are config files with same name will be overwritten -->
<Embed-Dependency>*;scope=compile;inline=false</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Embedded dependencies -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-full</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
<version>${poi.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.apache.poi</groupId>-->
<!-- <artifactId>ooxml-schemas</artifactId>-->
<!-- <version>${poi.schema.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.poi</groupId>-->
<!-- <artifactId>ooxml-security</artifactId>-->
<!-- <version>${poi.security.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>de.dnb</groupId>
<artifactId>oaipmh-spec</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>SparseBitSet</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>