68 lines
2.2 KiB
XML
68 lines
2.2 KiB
XML
|
|
<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>heima-leadnews</artifactId>
|
||
|
|
<groupId>com.heima</groupId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>heima-leadnews-utils</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<name>heima-leadnews-utils</name>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.heima</groupId>
|
||
|
|
<artifactId>heima-leadnews-model</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-codec</groupId>
|
||
|
|
<artifactId>commons-codec</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--匹配度工具包-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.hankcs</groupId>
|
||
|
|
<artifactId>hanlp</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-lang3</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jsoup</groupId>
|
||
|
|
<artifactId>jsoup</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-beanutils</groupId>
|
||
|
|
<artifactId>commons-beanutils</artifactId>
|
||
|
|
<version>1.9.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!--poi-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.protostuff</groupId>
|
||
|
|
<artifactId>protostuff-core</artifactId>
|
||
|
|
<version>1.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.protostuff</groupId>
|
||
|
|
<artifactId>protostuff-runtime</artifactId>
|
||
|
|
<version>1.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
</project>
|