110 lines
3.8 KiB
XML
110 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<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">
|
||
<parent>
|
||
<artifactId>jy-common</artifactId>
|
||
<groupId>com.songyue</groupId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>jy-core</artifactId>
|
||
|
||
<dependencies>
|
||
<!--HttpClient-->
|
||
<dependency>
|
||
<groupId>commons-httpclient</groupId>
|
||
<artifactId>commons-httpclient</artifactId>
|
||
<version>3.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>3.14.9</version>
|
||
</dependency>
|
||
<!--security-->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-security</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!-- jwt -->
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-api</artifactId>
|
||
<version>0.10.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-impl</artifactId>
|
||
<version>0.10.5</version>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-jackson</artifactId>
|
||
<version>0.10.5</version>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
<!--swagger starter-->
|
||
<dependency>
|
||
<groupId>com.spring4all</groupId>
|
||
<artifactId>swagger-spring-boot-starter</artifactId>
|
||
<version>${swagger-starter.version}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!--Excel 导入poi-->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>3.10-FINAL</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>3.10-FINAL</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>jstl</artifactId>
|
||
<version>1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.vaadin.external.google</groupId>
|
||
<artifactId>android-json</artifactId>
|
||
<version>0.0.20131108.vaadin1</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.sf.json-lib</groupId>
|
||
<artifactId>json-lib</artifactId>
|
||
<version>2.4</version>
|
||
<classifier>jdk15</classifier>
|
||
</dependency>
|
||
<!-- FreeMarker -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||
</dependency>
|
||
|
||
<!-- PDF: Flying Saucer + iText (注意:用 iText 5,兼容 JDK 8) -->
|
||
<dependency>
|
||
<groupId>org.xhtmlrenderer</groupId>
|
||
<artifactId>flying-saucer-pdf</artifactId>
|
||
<version>9.1.22</version>
|
||
</dependency>
|
||
|
||
<!-- Jsoup for HTML parsing -->
|
||
<dependency>
|
||
<groupId>org.jsoup</groupId>
|
||
<artifactId>jsoup</artifactId>
|
||
<version>1.14.3</version> <!-- 兼容 JDK 8 的较新版本 -->
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sun.mail</groupId>
|
||
<artifactId>javax.mail</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |