|
@@ -8,23 +8,99 @@
|
|
|
<version>1.0.0</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
-
|
|
|
<artifactId>picc-common</artifactId>
|
|
|
+ <properties>
|
|
|
+ <poi.version>4.1.0</poi.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
<dependencies>
|
|
|
+ <!-- apache poi -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-scratchpad</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>fr.opensagres.xdocreport</groupId>
|
|
|
+ <artifactId>xdocreport</artifactId>
|
|
|
+ <version>1.0.6</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>ooxml-schemas</artifactId>
|
|
|
+ <version>1.3</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- apache poi end -->
|
|
|
+
|
|
|
+ <!-- aliyun oss start -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- aliyun oss end -->
|
|
|
+
|
|
|
+ <!-- 阿里大鱼短信jar包 start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.taobao</groupId>
|
|
|
+ <artifactId>taobao-sdk-java</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 阿里大鱼短信jar包 end-->
|
|
|
+
|
|
|
+ <!--html转pdf start-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itextpdf</artifactId>
|
|
|
+ <version>5.5.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itext-asian</artifactId>
|
|
|
+ <version>5.2.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--mysql pagehelper-->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
<version>LATEST</version>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.tomcat.embed</groupId>
|
|
|
- <artifactId>tomcat-embed-core</artifactId>
|
|
|
- </dependency>
|
|
|
+
|
|
|
<!-- veloctiy -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
<artifactId>velocity</artifactId>
|
|
|
<version>1.7</version>
|
|
|
</dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
</dependencies>
|
|
|
</project>
|