read-excel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bld-commons.excel</groupId> <artifactId>read-excel</artifactId> <version>5.0.5</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.bld-commons.excel</groupId> <artifactId>read-excel</artifactId> <name>read-excel</name> <parent> <groupId>com.github.bld-commons</groupId> <artifactId>dev-excel</artifactId> <version>5.0.5</version> </parent> <dependencies> <dependency> <groupId>com.github.bld-commons</groupId> <artifactId>common-annotations</artifactId> </dependency> <dependency> <groupId>com.github.bld-commons</groupId> <artifactId>common-spreadsheet</artifactId> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> <annotationProcessorPaths> <path> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${org.mapstruct-version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> <docletArtifact> <groupId>org.umlgraph</groupId> <artifactId>umlgraph</artifactId> </docletArtifact> <additionalparam>-views -all</additionalparam> <useStandardDocletOptions>true</useStandardDocletOptions> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <reportSets> <reportSet> <!-- defines taglist reports in the modules --> <id>taglist-report</id> <reports> <report>taglist</report> </reports> </reportSet> <reportSet> <!-- defines taglist aggregate report --> <id>taglist-aggregate</id> <inherited>false</inherited> <reports> <report>taglist</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <reportSets> <reportSet> <!-- defines cobertura projects- and aggregate-report --> <id>cobertura</id> <reports> <report>cobertura</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <reportSets> <reportSet> <!-- defines pmd reports in the modules --> <id>pmd-report</id> <reports> <report>pmd</report> </reports> </reportSet> <reportSet> <!-- defines pmd aggregate report --> <id>pmd-aggregate</id> <inherited>false</inherited> <reports> <report>pmd</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> <reportSet> <!-- defines cpd reports in the modules --> <id>cpd-report</id> <reports> <report>cpd</report> </reports> </reportSet> <reportSet> <!-- defines cpd aggregate report --> <id>cpd-aggregate</id> <inherited>false</inherited> <reports> <report>cpd</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <reportSets> <reportSet> <!-- defines unit test reports in the modules --> <id>unit-tests</id> <reports> <report>report</report> </reports> </reportSet> <reportSet> <!-- defines aggregate unit test report --> <id>unit-tests-aggregate</id> <inherited>false</inherited> <reports> <report>report</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> <reportSet> <!-- defines integration test reports in the modules --> <id>integration-tests</id> <reports> <report>failsafe-report-only</report> </reports> </reportSet> <reportSet> <!-- defines aggregate integration test report --> <id>integration-tests-aggregate</id> <inherited>false</inherited> <reports> <report>failsafe-report-only</report> </reports> <configuration> <aggregate>true</aggregate> </configuration> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> </plugins> </reporting> </project>