32 Star 261 Fork 114

思通数科 StoneDT / AI多模态能力平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 18.39 KB
一键复制 编辑 原始数据 按行查看 历史
PlusBoy 提交于 2023-10-08 11:05 . 添加功能 高频词提取
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.yqt</groupId>
<artifactId>yqt</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>yqt</name>
<description>yqt</description>
<properties>
<java.version>8</java.version>
<!-- <elasticsearch.version>7.12.1</elasticsearch.version>-->
</properties>
<repositories>
<!--使用mvn仓库安装-->
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<!-- <dependency>-->
<!-- <groupId>org.elasticsearch.client</groupId>-->
<!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.squareup.okhttp3</groupId>-->
<!-- <artifactId>okhttp</artifactId>-->
<!-- <version>4.9.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.jetbrains.kotlin</groupId>-->
<!-- <artifactId>kotlin-stdlib</artifactId>-->
<!-- <version>1.3.70</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.minio</groupId>-->
<!-- <artifactId>minio</artifactId>-->
<!-- <version>8.3.4</version>-->
<!-- <exclusions>-->
<!-- <exclusion>-->
<!-- <groupId>com.squareup.okhttp3</groupId>-->
<!-- <artifactId>okhttp</artifactId>-->
<!-- </exclusion>-->
<!-- <exclusion>-->
<!-- <groupId>org.jetbrains.kotlin</groupId>-->
<!-- <artifactId>kotlin-stdlib</artifactId>-->
<!-- </exclusion>-->
<!-- </exclusions>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;中文转拼音&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.belerweb</groupId>-->
<!-- <artifactId>pinyin4j</artifactId>-->
<!-- <version>2.5.1</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;文本编码&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.googlecode.juniversalchardet</groupId>-->
<!-- <artifactId>juniversalchardet</artifactId>-->
<!-- <version>1.0.3</version>-->
<!-- </dependency>-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
<!-- 排除自带的1.5.20版本-->
<exclusions>
<exclusion>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>3.0.2</version>
</dependency>
<!-- &lt;!&ndash; 使用1.5.22&ndash;&gt;-->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.22</version>
</dependency>
<!-- &lt;!&ndash;图片绘制&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>javax.media.jai</groupId>-->
<!-- <artifactId>com.springsource.javax.media.jai.core</artifactId>-->
<!-- <version>1.1.3</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;图片比较&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.bytedeco</groupId>-->
<!-- <artifactId>javacv</artifactId>-->
<!-- <version>1.3.3</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.bytedeco</groupId>-->
<!-- <artifactId>javacv-platform</artifactId>-->
<!-- <version>1.3.3</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;图片压缩&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>net.coobird</groupId>-->
<!-- <artifactId>thumbnailator</artifactId>-->
<!-- <version>0.4.8</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>aspose-words</groupId>-->
<!-- <artifactId>aspose-words</artifactId>-->
<!-- <scope>system</scope>-->
<!-- <version>1.0</version>-->
<!-- <systemPath>${project.basedir}/lib/aspose-words-14.9.0-jdk16.jar</systemPath>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;ppt转pdf&ndash;&gt;-->
<!-- &lt;!&ndash; itextpdf &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.itextpdf</groupId>-->
<!-- <artifactId>itextpdf</artifactId>-->
<!-- <version>5.4.3</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.itextpdf</groupId>-->
<!-- <artifactId>itext-asian</artifactId>-->
<!-- <version>5.2.0</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;word转pdf&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.documents4j</groupId>-->
<!-- <artifactId>documents4j-local</artifactId>-->
<!-- <version>1.0.3</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.documents4j</groupId>-->
<!-- <artifactId>documents4j-transformer-msoffice-word</artifactId>-->
<!-- <version>1.0.3</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; 引入java多媒体处理包 &ndash;&gt;-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/ws.schild/jave-core &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>ws.schild</groupId>-->
<!-- <artifactId>jave-core</artifactId>-->
<!-- <version>2.4.6</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; linux64位 ffmpeg,视频切割合并Linux环境依赖,根据运行环境Linux64位环境包和window64位环境包只需要依赖一个即可,这个jar包比较大,有21M &ndash;&gt;-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/ws.schild/jave-native-linux64 &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>ws.schild</groupId>-->
<!-- <artifactId>jave-native-linux64</artifactId>-->
<!-- <version>2.4.6</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; window64位 ffmpeg,视频切割合并Windows环境依赖,根据运行环境Linux64位环境包和window64位环境包只需要依赖一个即可,这个jar包比较大,有20M &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>ws.schild</groupId>-->
<!-- <artifactId>jave-native-win64</artifactId>-->
<!-- <version>2.4.6</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.microsoft.playwright</groupId>-->
<!-- <artifactId>playwright</artifactId>-->
<!-- <version>1.23.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.alibaba.fastjson2</groupId>-->
<!-- <artifactId>fastjson2</artifactId>-->
<!-- <version>2.0.24</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>cn.hutool</groupId>-->
<!-- <artifactId>hutool-all</artifactId>-->
<!-- <version>4.6.10</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>cn.hutool</groupId>-->
<!-- <artifactId>hutool-core</artifactId>-->
<!-- <version>5.8.15</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-websocket</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>spire.barcode.free-5.1.1</groupId>-->
<!-- <artifactId>spire.barcode.free-5.1.1</artifactId>-->
<!-- <version>0.0.1</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/spire.barcode.free-5.1.1.jar</systemPath>-->
<!-- </dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- compile\provided -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>THULAC_java_v1</groupId>
<artifactId>THULAC_java_v1</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/THULAC_java_v1.jar</systemPath>
</dependency>
<!-- <dependency>-->
<!-- <groupId>WebCollector-2.71</groupId>-->
<!-- <artifactId>WebCollector-2.71</artifactId>-->
<!-- <version>0.0.1</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/WebCollector-2.71.jar</systemPath>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>libsvm</groupId>-->
<!-- <artifactId>libsvm</artifactId>-->
<!-- <version>0.0.1</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/libsvm.jar</systemPath>-->
<!-- </dependency>-->
<dependency>
<groupId>liblinear-1.8</groupId>
<artifactId>liblinear-1.8</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/liblinear-1.8.jar</systemPath>
</dependency>
<!-- <dependency>-->
<!-- <groupId>commons-codec-1.3</groupId>-->
<!-- <artifactId>commons-codec-1.3</artifactId>-->
<!-- <version>0.0.1</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/lib/commons-codec-1.3.jar</systemPath>-->
<!-- </dependency>-->
<dependency>
<groupId>apache-commons-lang</groupId>
<artifactId>apache-commons-lang</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/apache-commons-lang.jar</systemPath>
</dependency>
<dependency>
<groupId>org.wltea</groupId>
<artifactId>IKAnalyzer</artifactId>
<version>2012</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/IKAnalyzer2012FF_u1.jar</systemPath>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.hankcs</groupId>-->
<!-- <artifactId>hanlp</artifactId>-->
<!-- <version>portable-1.8.3</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- springboot mysql支持包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- springboot 数据连接 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.2.2</version>
</dependency>
<!-- -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.76</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.google.code.gson</groupId>-->
<!-- <artifactId>gson</artifactId>-->
<!-- <version>2.9.0</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.10.0</version>
</dependency>
<!-- httpclient依赖 -->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<!-- commons-io依赖 -->
<!-- <dependency>-->
<!-- <groupId>org.apache.commons</groupId>-->
<!-- <artifactId>commons-io</artifactId>-->
<!-- <version>1.3.2</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; httpcoomponents依赖 &ndash;&gt;-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.httpcomponents</groupId>-->
<!-- <artifactId>httpcore</artifactId>-->
<!-- <version>4.4.10</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.httpcomponents</groupId>-->
<!-- <artifactId>httpclient</artifactId>-->
<!-- <version>4.5.6</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; 文档 &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>commons-fileupload</groupId>-->
<!-- <artifactId>commons-fileupload</artifactId>-->
<!-- <version>1.3.1</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>commons-io</groupId>-->
<!-- <artifactId>commons-io</artifactId>-->
<!-- <version>2.4</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.3</version>
</dependency>
<!-- &lt;!&ndash; 读取Excel XLS &ndash;&gt;-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
</dependency>
<!-- &lt;!&ndash; 读取PPT、DOC、Visio &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.poi</groupId>-->
<!-- <artifactId>poi-scratchpad</artifactId>-->
<!-- <version>4.1.2</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; 读取Excel XLSX、PPTX、DOCX、&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.poi</groupId>-->
<!-- <artifactId>poi-ooxml</artifactId>-->
<!-- <version>4.1.2</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash;读取pdf信息&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.pdfbox</groupId>-->
<!-- <artifactId>pdfbox</artifactId>-->
<!-- <version>2.0.12</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.pdfbox/fontbox &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.apache.pdfbox</groupId>-->
<!-- <artifactId>fontbox</artifactId>-->
<!-- <version>2.0.12</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.google.zxing</groupId>-->
<!-- <artifactId>core</artifactId>-->
<!-- <version>3.4.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.google.zxing</groupId>-->
<!-- <artifactId>javase</artifactId>-->
<!-- <version>3.4.0</version>-->
<!-- </dependency>-->
<!--获取网页内容-->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>7.15.0</version>
</dependency>
<!-- &lt;!&ndash;文本比对&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.bitbucket.cowwoc</groupId>-->
<!-- <artifactId>diff-match-patch</artifactId>-->
<!-- <version>1.2</version>-->
<!-- </dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
<finalName>nlp</finalName>
</build>
</project>
Java
1
https://gitee.com/stonedtx/free-nlp-api.git
git@gitee.com:stonedtx/free-nlp-api.git
stonedtx
free-nlp-api
AI多模态能力平台
master

搜索帮助