emc-cellsheet-excel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.epsilon.labs</groupId> <artifactId>emc-cellsheet-excel</artifactId> <version>3.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.epsilon.labs</groupId> <artifactId>emc-cellsheet</artifactId> <version>3.0.0</version> </parent> <artifactId>emc-cellsheet-excel</artifactId> <version>3.0.0</version> <packaging>bundle</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>EMC Cellsheet Excel component Back-end supporting Excel 2007+ documents</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>emc-cellsheet-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.poi</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-ext</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> </dependency> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Bundle-SymbolicName>${project.groupId}.emc.cellsheet.excel</Bundle-SymbolicName> <Export-Package>org.eclipse.epsilon.labs.emc.cellsheet.excel</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <excludes> <exclude>org/eclipse/epsilon/labs/emc/cellsheet/poi/FormulaParseException.*</exclude> <exclude>org/eclipse/epsilon/labs/emc/cellsheet/poi/FormulaParser.*</exclude> <exclude>org/eclipse/epsilon/labs/emc/cellsheet/poi/OperandClassTransformer.*</exclude> <exclude>org/eclipse/epsilon/labs/emc/cellsheet/poi/ParseNode.*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>