Skip to content

Commit 107a435

Browse files
committed
Update to Gradle 7.2
1 parent 7200a7a commit 107a435

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Unreleased
2+
- Fix: update to Gradle 7 [#305](https://github.com/logstash-plugins/logstash-input-file/pull/305)
3+
14
## 4.4.0
25
- Add support for ECS v8 [#301](https://github.com/logstash-plugins/logstash-input-file/pull/301)
36

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ dependencies {
3737
task sourcesJar(type: Jar, dependsOn: classes) {
3838
from sourceSets.main.allSource
3939
classifier 'sources'
40-
extension 'jar'
40+
archiveExtension = 'jar'
4141
}
4242

4343
task javadocJar(type: Jar, dependsOn: javadoc) {
4444
from javadoc.destinationDir
4545
classifier 'javadoc'
46-
extension 'jar'
46+
archiveExtension = 'jar'
4747
}
4848

4949
task copyGemjar(type: Copy, dependsOn: sourcesJar) {

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)