@@ -39,6 +39,9 @@ Spring Boot 支持 https://gitee.com/lemur/easypoi-spring-boot-starter | |||||
- [网易](http://www.netease.com) | - [网易](http://www.netease.com) | ||||
- [港华燃气](http://www.towngas.com.cn/) | - [港华燃气](http://www.towngas.com.cn/) | ||||
- [北京易才博普奥管理顾问有限公司](https://www.weifenghr.com/) | - [北京易才博普奥管理顾问有限公司](https://www.weifenghr.com/) | ||||
- [中投国信(北京)科技发展有限公司](http://sic-credit.cn/) | |||||
- [武汉格事化信息技术](https://www.getto1.com/) | |||||
- [北京辰森世纪科技股份有限公司](http://www.choicesoft.com.cn/) | |||||
@@ -39,6 +39,16 @@ | |||||
<artifactId>poi-scratchpad</artifactId> | <artifactId>poi-scratchpad</artifactId> | ||||
<optional>true</optional> | <optional>true</optional> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.apache.poi</groupId> | |||||
<artifactId>poi-scratchpad</artifactId> | |||||
<optional>true</optional> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.apache.xmlbeans</groupId> | |||||
<artifactId>xmlbeans</artifactId> | |||||
<optional>true</optional> | |||||
</dependency> | |||||
<!-- PDF --> | <!-- PDF --> | ||||
<dependency> | <dependency> | ||||
@@ -19,11 +19,21 @@ | |||||
<artifactId>spring-webmvc</artifactId> | <artifactId>spring-webmvc</artifactId> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.springframework</groupId> | |||||
<artifactId>spring-context</artifactId> | |||||
<scope>compile</scope> | |||||
</dependency> | |||||
<dependency> | <dependency> | ||||
<groupId>org.springframework</groupId> | <groupId>org.springframework</groupId> | ||||
<artifactId>spring-core</artifactId> | <artifactId>spring-core</artifactId> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.springframework</groupId> | |||||
<artifactId>spring-beans</artifactId> | |||||
<scope>compile</scope> | |||||
</dependency> | |||||
<dependency> | <dependency> | ||||
<groupId>javax.servlet</groupId> | <groupId>javax.servlet</groupId> | ||||
@@ -23,10 +23,10 @@ | |||||
</licenses> | </licenses> | ||||
<scm> | <scm> | ||||
<connection>scm:git@git.oschina.net:lemur/easypoi.git</connection> | |||||
<developerConnection>scm:git@git.oschina.net:lemur/easypoi.git</developerConnection> | |||||
<url>git@git.oschina.net:lemur/easypoi.git</url> | |||||
</scm> | |||||
<connection>scm:git@git.oschina.net:lemur/easypoi.git</connection> | |||||
<developerConnection>scm:git@git.oschina.net:lemur/easypoi.git</developerConnection> | |||||
<url>git@git.oschina.net:lemur/easypoi.git</url> | |||||
</scm> | |||||
<developers> | <developers> | ||||
<developer> | <developer> | ||||
@@ -99,6 +99,13 @@ | |||||
<optional>true</optional> | <optional>true</optional> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.apache.xmlbeans</groupId> | |||||
<artifactId>xmlbeans</artifactId> | |||||
<version>3.1.0</version> | |||||
<optional>true</optional> | |||||
</dependency> | |||||
<!-- google 工具类 --> | <!-- google 工具类 --> | ||||
<dependency> | <dependency> | ||||
<groupId>com.google.guava</groupId> | <groupId>com.google.guava</groupId> | ||||
@@ -138,11 +145,21 @@ | |||||
<artifactId>spring-webmvc</artifactId> | <artifactId>spring-webmvc</artifactId> | ||||
<version>${spring.version}</version> | <version>${spring.version}</version> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.springframework</groupId> | |||||
<artifactId>spring-context</artifactId> | |||||
<version>${spring.version}</version> | |||||
</dependency> | |||||
<dependency> | <dependency> | ||||
<groupId>org.springframework</groupId> | <groupId>org.springframework</groupId> | ||||
<artifactId>spring-core</artifactId> | <artifactId>spring-core</artifactId> | ||||
<version>${spring.version}</version> | <version>${spring.version}</version> | ||||
</dependency> | </dependency> | ||||
<dependency> | |||||
<groupId>org.springframework</groupId> | |||||
<artifactId>spring-beans</artifactId> | |||||
<version>${spring.version}</version> | |||||
</dependency> | |||||
<dependency> | <dependency> | ||||
<groupId>javax.servlet</groupId> | <groupId>javax.servlet</groupId> | ||||