mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 17:18:57 +08:00
update version to 2.1.0-easysearch
This commit is contained in:
parent
49faa149bc
commit
f2eee40e5f
27
TESTS.md
Normal file
27
TESTS.md
Normal file
@ -0,0 +1,27 @@
|
||||
# Easy-Es for elasticsearch 测试运行指南
|
||||
|
||||
## 快速开始
|
||||
先确认 Easysearch 服务已经运行,并在 easy-es-spring-test/src/test/resources/spring-context.xml 里配置好连接参数。
|
||||
|
||||
### 运行完整测试套件
|
||||
|
||||
```bash
|
||||
mvn clean test -pl easy-es-spring-test -am -DfailIfNoTests=false -Dtest=XmlScannerAllTest
|
||||
```
|
||||
|
||||
### 运行单个测试方法
|
||||
|
||||
```bash
|
||||
# 先编译依赖
|
||||
mvn clean test-compile -pl easy-es-spring-test -am -q
|
||||
|
||||
# 运行指定测试
|
||||
mvn test -pl easy-es-spring-test -Dtest=XmlScannerAllTest#testInsert
|
||||
```
|
||||
|
||||
### 查看文本报告
|
||||
|
||||
```bash
|
||||
# 查看简洁报告
|
||||
cat easy-es-spring-test/target/surefire-reports/org.dromara.easyes.test.all.XmlScannerAllTest.txt
|
||||
```
|
||||
@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
|
||||
<name>easy-es-parent</name>
|
||||
<description>easy use for Easysearch</description>
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
@ -21,7 +21,7 @@
|
||||
<dependency>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-boot-starter</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</parent>
|
||||
<artifactId>easy-es-solon-test</artifactId>
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</parent>
|
||||
<artifactId>easy-es-spring-test</artifactId>
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-parent</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
<relativePath>../easy-es-parent</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>easy-es-test</artifactId>
|
||||
|
||||
8
pom.xml
8
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
|
||||
<name>easy-es</name>
|
||||
<description>easy use for Easysearch</description>
|
||||
@ -31,17 +31,17 @@
|
||||
<dependency>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-boot-starter</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-solon-plugin</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dromara.easy-es</groupId>
|
||||
<artifactId>easy-es-spring</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<version>2.1.0-easysearch</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user