File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -401,15 +401,15 @@ getting_started_add_documents_md: |-
401
401
<dependency>
402
402
<groupId>com.meilisearch.sdk</groupId>
403
403
<artifactId>meilisearch-java</artifactId>
404
- <version>0.7.2 </version>
404
+ <version>0.8.0 </version>
405
405
<type>pom</type>
406
406
</dependency>
407
407
```
408
408
409
409
**Gradle**
410
410
Add the following line to the `dependencies` section of your `build.gradle`:
411
411
```groovy
412
- implementation 'com.meilisearch.sdk:meilisearch-java:0.7.2 '
412
+ implementation 'com.meilisearch.sdk:meilisearch-java:0.8.0 '
413
413
```
414
414
415
415
```java
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Add the following code to the `<dependencies>` section of your project:
56
56
<dependency >
57
57
<groupId >com.meilisearch.sdk</groupId >
58
58
<artifactId >meilisearch-java</artifactId >
59
- <version >0.7.2 </version >
59
+ <version >0.8.0 </version >
60
60
<type >pom</type >
61
61
</dependency >
62
62
```
@@ -66,7 +66,7 @@ Add the following code to the `<dependencies>` section of your project:
66
66
Add the following line to the ` dependencies ` section of your ` build.gradle ` :
67
67
68
68
``` groovy
69
- implementation 'com.meilisearch.sdk:meilisearch-java:0.7.2 '
69
+ implementation 'com.meilisearch.sdk:meilisearch-java:0.8.0 '
70
70
```
71
71
72
72
### Run Meilisearch <!-- omit in toc -->
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ plugins {
18
18
19
19
group = ' com.meilisearch.sdk'
20
20
archivesBaseName = ' meilisearch-java'
21
- version = ' 0.7.2 '
21
+ version = ' 0.8.0 '
22
22
23
23
java {
24
24
sourceCompatibility = JavaVersion . VERSION_1_8
87
87
}
88
88
testLogging {
89
89
events ' passed' , ' skipped' , ' failed'
90
+ showStandardStreams = true
90
91
}
91
92
}
92
93
@@ -100,6 +101,7 @@ task integrationTest(type: Test) {
100
101
}
101
102
testLogging {
102
103
events ' passed' , ' skipped' , ' failed'
104
+ showStandardStreams = true
103
105
}
104
106
}
105
107
You can’t perform that action at this time.
0 commit comments