You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr/jyjz-system/jyjz-system-cms/pom.xml

130 lines
3.9 KiB

<?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>jyjz-system</artifactId>
<groupId>cn.jyjz</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-system-cms</artifactId>
<version>1.0.0</version>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<!--lucene导入start -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>${org.apache.lucene.version}</version>
</dependency>
<!--对分词索引查询解析ThreadPool-->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>${org.apache.lucene.version}</version>
</dependency>
<!--高亮 -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-highlighter</artifactId>
<version>${org.apache.lucene.version}</version>
</dependency>
<!--smartcn 中文分词器 SmartChineseAnalyzer smartcn分词器 需要lucene依赖 且和lucene版本同步-->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-smartcn</artifactId>
<version>${org.apache.lucene.version}</version>
</dependency>
<!--ik-analyzer 中文分词器-->
<dependency>
<groupId>cn.bestwu</groupId>
<artifactId>ik-analyzers</artifactId>
<version>${cn.bestwu.ik-analyzers.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-common-base</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-common-web</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-common-mybatisplus</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-common-redis</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-common-upload</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-framework-security</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-framework-securityweb</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-system-abase</artifactId>
</dependency>
<dependency>
<groupId>cn.jyjz</groupId>
<artifactId>jyjz-system-admin</artifactId>
</dependency>
</dependencies>
</project>