File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed
src/test/java/com/netflix/conductor/es7/dao/index
test-harness/src/test/java/com/netflix/conductor/test/integration
test-util/src/test/java/com/netflix/conductor/test/integration Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 17
17
ext {
18
18
revActivation = ' 2.0.1'
19
19
revApacheHttpComponentsClient5 = ' 5.2.1'
20
+ revApacheLucene = ' 8.11.1'
20
21
revAwaitility = ' 3.1.6'
21
22
revAwsSdk = ' 1.12.756'
22
23
revBval = ' 2.0.5'
61
62
revKafka = ' 2.6.0'
62
63
revMicrometer = ' 1.13.1'
63
64
revPrometheus = ' 0.9.0'
64
- revElasticSearch7 = ' 7.17.19 '
65
+ revElasticSearch7 = ' 7.17.11 '
65
66
revCodec = ' 1.15'
66
- revAzureStorageBlobSdk = ' 12.18.0 '
67
+ revAzureStorageBlobSdk = ' 12.25.1 '
67
68
revNatsStreaming = ' 2.6.5'
68
69
revNats = ' 2.16.14'
69
70
revStan = ' 2.2.3'
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ dependencies {
26
26
27
27
implementation " com.fasterxml.jackson.core:jackson-databind"
28
28
implementation " com.fasterxml.jackson.core:jackson-core"
29
+
30
+ implementation " org.apache.lucene:lucene-core:${ revApacheLucene} "
29
31
30
32
implementation " org.elasticsearch.client:elasticsearch-rest-client:${ revElasticSearch7} "
31
33
implementation " org.elasticsearch.client:elasticsearch-rest-high-level-client:${ revElasticSearch7} "
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public ElasticSearchProperties elasticSearchProperties() {
48
48
protected static final ElasticsearchContainer container =
49
49
new ElasticsearchContainer (
50
50
DockerImageName .parse ("elasticsearch" )
51
- .withTag ("7.17.16 " )); // this should match the client version
51
+ .withTag ("7.17.11 " )); // this should match the client version
52
52
53
53
@ Autowired protected ObjectMapper objectMapper ;
54
54
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ dependencies {
68
68
implementation ' org.apache.logging.log4j:log4j-web'
69
69
implementation " redis.clients:jedis:${ revJedis} "
70
70
implementation " org.postgresql:postgresql:${ revPostgres} "
71
+ implementation " org.apache.lucene:lucene-core:${ revApacheLucene} "
71
72
72
73
implementation ' org.springframework.boot:spring-boot-starter-actuator'
73
74
implementation (" io.orkes.queues:orkes-conductor-queues:${ revOrkesQueues} " ) {
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public abstract class AbstractEndToEndTest {
66
66
private static final ElasticsearchContainer container =
67
67
new ElasticsearchContainer (
68
68
DockerImageName .parse ("elasticsearch" )
69
- .withTag ("7.17.16 " )); // this should match the client version
69
+ .withTag ("7.17.11 " )); // this should match the client version
70
70
71
71
private static RestClient restClient ;
72
72
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public abstract class AbstractEndToEndTest {
62
62
private static final ElasticsearchContainer container =
63
63
new ElasticsearchContainer (
64
64
DockerImageName .parse ("elasticsearch" )
65
- .withTag ("7.17.16 " )); // this should match the client version
65
+ .withTag ("7.17.11 " )); // this should match the client version
66
66
67
67
private static RestClient restClient ;
68
68
You can’t perform that action at this time.
0 commit comments