excel-parser-spring-boot-poi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.cla9</groupId> <artifactId>excel-parser-spring-boot-poi</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.cla9</groupId> <artifactId>excel-parser-spring-boot-poi</artifactId> <version>1.3.0</version> <name>excel-parser-spring-boot-starter</name> <description>excel-parser-spring-boot-starter</description> <url>https://github.com/cla9/excel-parser-spring-boot-starter</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>cla9</id> <name>Eunsoo Kim</name> <email>cla90979@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/cla9/excel-parser-spring-boot-starter.git</connection> <developerConnection>scm:git:ssh://github.com:cla9/excel-parser-spring-boot-starter.git</developerConnection> <url>https://github.com/cla9/excel-parser-spring-boot-starter</url> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> <version>2.3.4.RELEASE</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.drapostolos</groupId> <artifactId>type-parser</artifactId> <version>0.7.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-vintage-engine</artifactId> <groupId>org.junit.vintage</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.5.RELEASE</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>