@@ -172,10 +172,10 @@ Download the self-contained fat JAR for your Elasticsearch version:
172172
173173| Elasticsearch Version | Artifact |
174174| -----------------------| ----------------------------------------|
175- | ES 6.x | ` softclient4es6-jdbc-driver-0.1.1 .jar ` |
176- | ES 7.x | ` softclient4es7-jdbc-driver-0.1.1 .jar ` |
177- | ES 8.x | ` softclient4es8-jdbc-driver-0.1.1 .jar ` |
178- | ES 9.x | ` softclient4es9-jdbc-driver-0.1.1 .jar ` |
175+ | ES 6.x | ` softclient4es6-jdbc-driver-0.1.3 .jar ` |
176+ | ES 7.x | ` softclient4es7-jdbc-driver-0.1.3 .jar ` |
177+ | ES 8.x | ` softclient4es8-jdbc-driver-0.1.3 .jar ` |
178+ | ES 9.x | ` softclient4es9-jdbc-driver-0.1.3 .jar ` |
179179
180180``` text
181181JDBC URL: jdbc:elastic://localhost:9200
@@ -190,20 +190,20 @@ Driver class: app.softnetwork.elastic.jdbc.ElasticDriver
190190<dependency >
191191 <groupId >app.softnetwork.elastic</groupId >
192192 <artifactId >softclient4es8-jdbc-driver</artifactId >
193- <version >0.1.1 </version >
193+ <version >0.1.3 </version >
194194</dependency >
195195```
196196
197197** Gradle:**
198198
199199``` groovy
200- implementation 'app.softnetwork.elastic:softclient4es8-jdbc-driver:0.1.1 '
200+ implementation 'app.softnetwork.elastic:softclient4es8-jdbc-driver:0.1.3 '
201201```
202202
203203** sbt:**
204204
205205``` scala
206- libraryDependencies += " app.softnetwork.elastic" % " softclient4es8-jdbc-driver" % " 0.1.1 "
206+ libraryDependencies += " app.softnetwork.elastic" % " softclient4es8-jdbc-driver" % " 0.1.3 "
207207```
208208
209209The JDBC driver JARs are Scala-version-independent (no ` _2.12 ` or ` _2.13 ` suffix) and include all required dependencies.
@@ -231,11 +231,11 @@ For programmatic access, add SoftClient4ES to your project.
231231resolvers += " Softnetwork" at " https://softnetwork.jfrog.io/artifactory/releases/"
232232
233233// Choose your Elasticsearch version
234- libraryDependencies += " app.softnetwork.elastic" %% " softclient4es8-java-client" % " 0.18 .0"
234+ libraryDependencies += " app.softnetwork.elastic" %% " softclient4es8-java-client" % " 0.19 .0"
235235// Add the community extensions for materialized views (optional)
236- libraryDependencies += " app.softnetwork.elastic" %% " softclient4es-community-extensions" % " 0.1.1 "
236+ libraryDependencies += " app.softnetwork.elastic" %% " softclient4es-community-extensions" % " 0.1.3 "
237237// Add the JDBC driver if you want to use it from Scala (optional)
238- libraryDependencies += " app.softnetwork.elastic" %% " softclient4es-jdbc-driver" % " 0.1.1 "
238+ libraryDependencies += " app.softnetwork.elastic" %% " softclient4es-jdbc-driver" % " 0.1.3 "
239239```
240240
241241``` scala
0 commit comments