dev-excel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bld-commons</groupId> <artifactId>dev-excel</artifactId> <version>4.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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> <groupId>com.github.bld-commons</groupId> <artifactId>dev-excel</artifactId> <packaging>pom</packaging> <version>4.1.4</version> <name>Development Excel</name> <url>https://github.com/FrancescoBaldi87/dev-excel</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Francesco Baldi</name> <email>francesco.baldi1987@gmail.com</email> <organization>Sonatype</organization> <organizationUrl>http://www.sonatype.com</organizationUrl> </developer> </developers> <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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.5</version> <relativePath /> </parent> <properties> <org.apache.poi-version>5.2.3</org.apache.poi-version> <commons-compress.version>1.21</commons-compress.version> <org.apache.commons-version>4.4</org.apache.commons-version> <javax.validation-version>2.0.1.Final</javax.validation-version> <commons-lang3.version>3.12.0</commons-lang3.version> <commons-text.version>1.10.0</commons-text.version> <commons-beanutils.version>1.9.4</commons-beanutils.version> <io.leangen.geantyref-version>1.3.13</io.leangen.geantyref-version> <org.reflections-version>0.10.2</org.reflections-version> <com.fathzer-version>3.0.3</com.fathzer-version> <commons-csv.version>1.10.0</commons-csv.version> <junit.version>4.13.2</junit.version> <common-rest-connection-version>1.0.3</common-rest-connection-version> <common-spreadsheet.version>1.0.1</common-spreadsheet.version> <!-- PLUGIN INIZIO --> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <java.version>1.8</java.version> <org.mapstruct-version>1.3.0.Final</org.mapstruct-version> <org.apache.maven.plugins-version>2.8.2</org.apache.maven.plugins-version> <org.apache.maven.shared-version>3.2.1</org.apache.maven.shared-version> <org.codehaus.plexus-version>3.0.5</org.codehaus.plexus-version> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> <common-annotations.version>1.0.0</common-annotations.version> <!-- PLUGIN FINE --> </properties> <scm> <connection>scm:git:git://github.com/bld-commons/dev-excel.git</connection> <developerConnection>scm:git:git@github.com:bld-commons/dev-excel.git</developerConnection> <url>https://github.com/bld-commons/dev-excel</url> <tag>HEAD</tag> </scm> <modules> <module>generator-excel</module> <module>read-excel</module> <!--<module>common-spreadsheet</module> <module>report-excel</module> <module>report-excel-jpa</module> <module>report-excel-multiple-datasource</module>--> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.bld-commons</groupId> <artifactId>common-annotations</artifactId> <version>${common-annotations.version}</version> </dependency> <dependency> <groupId>com.github.bld-commons</groupId> <artifactId>common-spreadsheet</artifactId> <version>${common-spreadsheet.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml-lite</artifactId> <version>${org.apache.poi-version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.bld-commons</groupId> <artifactId>common-rest-connection</artifactId> <version>${common-rest-connection-version}</version> </dependency> <dependency> <groupId>com.fathzer</groupId> <artifactId>javaluator</artifactId> <version>${com.fathzer-version}</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>${org.reflections-version}</version> </dependency> <dependency> <groupId>io.leangen.geantyref</groupId> <artifactId>geantyref</artifactId> <version>${io.leangen.geantyref-version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${org.apache.poi-version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${org.apache.poi-version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${commons-compress.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>${org.apache.commons-version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>${commons-text.version}</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>${javax.validation-version}</version> </dependency> <dependency> <groupId>com.github.bld-commons.excel</groupId> <artifactId>generator-excel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.bld-commons.excel</groupId> <artifactId>read-excel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>${commons-beanutils.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>${commons-csv.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <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.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${org.apache.maven.plugins-version}</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>${org.codehaus.plexus-version}</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> <version>${org.apache.maven.shared-version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> <version>${org.apache.maven.shared-version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>releases</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> </plugins> </build> </project>