Skip to content

Commit 9059675

Browse files
committed
Gradle 7.4.2
Move tests to junit jupiter Minor libs upgrade: elasticsearch 7.17.4 jackson 2.13.2 jakarta.json-api 2.1.0 parsson 1.1.0 yasson 2.0.4 classgraph 4.8.146 testcontainers 1.17.2
1 parent ba93f8f commit 9059675

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ gradle-app.setting
1616
# IntelliJ Idea
1717
.idea
1818
*.iml
19-
out
2019

2120
.ci/output
2221

docs/getting-started/migrate-hlrc.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can use the HLRC version `7.x` with the {java-client} version `8.x`:
2525
--------------------------------------------------
2626
dependencies {
2727
implementation 'co.elastic.clients:elasticsearch-java:{version}'
28-
implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.17.3'
28+
implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.17.4'
2929
// other dependencies <1>
3030
}
3131
--------------------------------------------------

java-client/src/test/java/co/elastic/clients/elasticsearch/ElasticsearchTestServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static synchronized ElasticsearchTestServer global() {
5757
}
5858

5959
private synchronized void setup() {
60-
container = new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:7.17.3")
60+
container = new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:7.17.4")
6161
.withEnv("ES_JAVA_OPTS", "-Xms256m -Xmx256m")
6262
.withEnv("path.repo", "/tmp") // for snapshots
6363
.withStartupTimeout(Duration.ofSeconds(30))

0 commit comments

Comments
 (0)