File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed
src/test/java/com/erudika/lucene/store/s3 Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ The package is available on Maven Central:
37
37
<dependency >
38
38
<groupId >com.erudika</groupId >
39
39
<artifactId >lucene-s3directory</artifactId >
40
- <version >1.0.0</version >
40
+ <version >1.0.0-SNAPSHOT </version >
41
41
</dependency >
42
42
```
43
43
Original file line number Diff line number Diff line change 83
83
<dependency >
84
84
<groupId >org.mockito</groupId >
85
85
<artifactId >mockito-core</artifactId >
86
- <version >5.14.1 </version >
86
+ <version >5.14.2 </version >
87
87
<scope >test</scope >
88
88
</dependency >
89
89
<dependency >
90
90
<groupId >org.junit.jupiter</groupId >
91
91
<artifactId >junit-jupiter-api</artifactId >
92
- <version >5.11.2 </version >
92
+ <version >5.11.4 </version >
93
93
<scope >test</scope >
94
94
</dependency >
95
95
<dependency >
96
96
<groupId >org.junit.jupiter</groupId >
97
97
<artifactId >junit-jupiter-engine</artifactId >
98
- <version >5.11.2 </version >
98
+ <version >5.11.4 </version >
99
99
<scope >test</scope >
100
100
</dependency >
101
101
<dependency >
133
133
<plugin >
134
134
<groupId >org.apache.maven.plugins</groupId >
135
135
<artifactId >maven-checkstyle-plugin</artifactId >
136
- <version >3.5 .0</version >
136
+ <version >3.6 .0</version >
137
137
<dependencies >
138
138
<dependency >
139
139
<groupId >com.puppycrawl.tools</groupId >
241
241
<plugin >
242
242
<groupId >org.apache.maven.plugins</groupId >
243
243
<artifactId >maven-javadoc-plugin</artifactId >
244
- <version >3.10.1 </version >
244
+ <version >3.11.2 </version >
245
245
<executions >
246
246
<execution >
247
247
<id >attach-javadocs</id >
Original file line number Diff line number Diff line change @@ -370,12 +370,8 @@ private void verifyData() throws IOException {
370
370
}
371
371
372
372
protected Directory getDirectory (Path path ) throws IOException {
373
- S3Directory dir = new S3Directory (s3 , TEST_BUCKET + "-" + path .getFileName (), "" );
374
- try {
375
- dir .create ();
376
- } catch (InterruptedException ex ) {
377
- throw new RuntimeException (ex );
378
- }
373
+ S3Directory dir = new S3Directory (s3 , TEST_BUCKET , path .getFileName ().toString ());
374
+ dir .create ();
379
375
return dir ;
380
376
}
381
377
}
You can’t perform that action at this time.
0 commit comments