File tree 5 files changed +215
-156
lines changed
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
18
18
* specific language governing permissions and limitations
19
19
* under the License.
20
20
*/
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
+ }
25
33
26
34
group " org.logstash.integrations"
27
35
28
- sourceCompatibility = JavaVersion . VERSION_1_8
36
+ java {
37
+ sourceCompatibility = JavaVersion . VERSION_1_8
38
+ }
29
39
30
40
// given https://docs.confluent.io/current/installation/versions-interoperability.html matrix
31
41
// Confluent Platform 7.4.x is Apache Kafka 3.4.x
32
42
String confluentKafkaVersion = ' 7.4.0'
33
43
String apacheKafkaVersion = ' 3.4.1'
34
44
35
- buildscript {
36
- repositories {
37
- mavenCentral()
38
- }
39
- }
40
-
41
45
repositories {
42
46
mavenCentral()
43
47
maven {
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
6
zipStoreBase =GRADLE_USER_HOME
5
7
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments