|
62 | 62 | buildVersionQualifier = System.getProperty("build.version_qualifier", "") |
63 | 63 | version_tokens = opensearch_version.tokenize('-') |
64 | 64 | opensearch_build = version_tokens[0] + '.0' |
65 | | - kafka_version = '3.0.2' |
| 65 | + kafka_version = '3.4.0' |
66 | 66 |
|
67 | 67 | if (buildVersionQualifier) { |
68 | 68 | opensearch_build += "-${buildVersionQualifier}" |
@@ -132,7 +132,7 @@ dependencies { |
132 | 132 | testImplementation 'junit:junit:4.13.1' |
133 | 133 | testImplementation 'org.apache.httpcomponents:fluent-hc:4.5.13' |
134 | 134 | testImplementation 'org.mockito:mockito-core:2.23.0' |
135 | | - testImplementation 'org.springframework.kafka:spring-kafka-test:2.8.6' |
| 135 | + testImplementation 'org.springframework.kafka:spring-kafka-test:2.9.6' |
136 | 136 | testImplementation 'javax.servlet:servlet-api:2.5' |
137 | 137 | testImplementation 'com.unboundid:unboundid-ldapsdk:4.0.9' |
138 | 138 | testImplementation 'com.github.stephenc.jcip:jcip-annotations:1.0-1' |
@@ -327,12 +327,12 @@ task bundleSecurityAdminStandaloneTarGz(dependsOn: jar, type: Tar) { |
327 | 327 |
|
328 | 328 | task createPluginDescriptor() { |
329 | 329 | List<String> descriptorProperties = [ |
330 | | - "description=Provide access control related features for OpenSearch", |
331 | | - "version=${version}", |
332 | | - "name=opensearch-security", |
333 | | - "classname=org.opensearch.security.OpenSearchSecurityPlugin", |
334 | | - "java.version=${java.targetCompatibility}", |
335 | | - "opensearch.version=${version_tokens[0]}", |
| 330 | + "description=Provide access control related features for OpenSearch", |
| 331 | + "version=${version}", |
| 332 | + "name=opensearch-security", |
| 333 | + "classname=org.opensearch.security.OpenSearchSecurityPlugin", |
| 334 | + "java.version=${java.targetCompatibility}", |
| 335 | + "opensearch.version=${version_tokens[0]}", |
336 | 336 | ] |
337 | 337 |
|
338 | 338 | new File("plugin-descriptor.properties").text = descriptorProperties.join ("\n") |
|
0 commit comments