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.
83 lines
2.7 KiB
83 lines
2.7 KiB
3 years ago
|
<?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>jeecg-boot-parent</artifactId>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
|
<version>2.4.5</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>jeecg-boot-module-KM</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<elasticsearch.version>7.6.2</elasticsearch.version>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>aliyun</id>
|
||
|
<name>aliyun Repository</name>
|
||
|
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>jeecg</id>
|
||
|
<name>jeecg Repository</name>
|
||
|
<url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
|
<artifactId>jeecg-boot-base-core</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--KM dependencies-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
|
||
|
</dependency>
|
||
|
<!--<dependency>-->
|
||
|
<!--<groupId>org.elasticsearch.client</groupId>-->
|
||
|
<!--<artifactId>elasticsearch-rest-high-level-client</artifactId>-->
|
||
|
<!--<version>7.13.3</version>-->
|
||
|
<!--</dependency>-->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tika</groupId>
|
||
|
<artifactId>tika-core</artifactId>
|
||
|
<version>1.17</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tika</groupId>
|
||
|
<artifactId>tika-parsers</artifactId>
|
||
|
<version>1.17</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jodd</groupId>
|
||
|
<artifactId>jodd-all</artifactId>
|
||
|
<version>4.3.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
|
<artifactId>jeecg-system-local-api</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|