|
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' |
@@ -335,12 +335,12 @@ task bundleSecurityAdminStandaloneTarGz(dependsOn: jar, type: Tar) { |
335 | 335 |
|
336 | 336 | task createPluginDescriptor() { |
337 | 337 | List<String> descriptorProperties = [ |
338 | | - "description=Provide access control related features for OpenSearch", |
339 | | - "version=${version}", |
340 | | - "name=opensearch-security", |
341 | | - "classname=org.opensearch.security.OpenSearchSecurityPlugin", |
342 | | - "java.version=${java.targetCompatibility}", |
343 | | - "opensearch.version=${version_tokens[0]}", |
| 338 | + "description=Provide access control related features for OpenSearch", |
| 339 | + "version=${version}", |
| 340 | + "name=opensearch-security", |
| 341 | + "classname=org.opensearch.security.OpenSearchSecurityPlugin", |
| 342 | + "java.version=${java.targetCompatibility}", |
| 343 | + "opensearch.version=${version_tokens[0]}", |
344 | 344 | ] |
345 | 345 |
|
346 | 346 | new File("plugin-descriptor.properties").text = descriptorProperties.join ("\n") |
@@ -417,4 +417,4 @@ task updateVersion { |
417 | 417 | } |
418 | 418 | ant.replaceregexp(file:'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags:'g', byline:true) |
419 | 419 | } |
420 | | -} |
| 420 | +} |
0 commit comments