File tree Expand file tree Collapse file tree 5 files changed +215
-156
lines changed Expand file tree Collapse file tree 5 files changed +215
-156
lines changed Original file line number Diff line number Diff line change @@ -18,26 +18,30 @@ import static java.nio.file.StandardCopyOption.REPLACE_EXISTING
1818 * specific language governing permissions and limitations
1919 * under the License.
2020 */
21- apply plugin : " java"
22- apply plugin : ' maven-publish'
23- apply plugin : " distribution"
24- apply plugin : " idea"
21+ buildscript {
22+ repositories {
23+ mavenCentral()
24+ }
25+ }
26+
27+ plugins {
28+ id ' java'
29+ id ' maven-publish'
30+ id ' distribution'
31+ id ' idea'
32+ }
2533
2634group " org.logstash.integrations"
2735
28- sourceCompatibility = JavaVersion . VERSION_1_8
36+ java {
37+ sourceCompatibility = JavaVersion . VERSION_1_8
38+ }
2939
3040// given https://docs.confluent.io/current/installation/versions-interoperability.html matrix
3141// Confluent Platform 7.4.x is Apache Kafka 3.4.x
3242String confluentKafkaVersion = ' 7.4.0'
3343String apacheKafkaVersion = ' 3.4.1'
3444
35- buildscript {
36- repositories {
37- mavenCentral()
38- }
39- }
40-
4145repositories {
4246 mavenCentral()
4347 maven {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+ networkTimeout =10000
5+ validateDistributionUrl =true
46zipStoreBase =GRADLE_USER_HOME
57zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments