Skip to content

Commit 425767b

Browse files
committed
Gradle 8.0-rc-1
1 parent fb2c262 commit 425767b

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

.github/workflows/nebula.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,6 @@ jobs:
5151
- ${{ runner.os }}-gradlewrapper-
5252
- name: Gradle build
5353
run: ./gradlew --stacktrace build --scan
54-
- name: Post-success actions
55-
if: success()
56-
run: ./gradlew jacocoTestReport coveralls
57-
env:
58-
CI_NAME: github_actions
59-
CI_BUILD_NUMBER: ${{ github.sha }}
60-
CI_BUILD_URL: 'https://github.com/${{ github.repository }}'
61-
CI_BRANCH: ${{ github.ref }}
62-
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6354
publish:
6455
if: startsWith(github.ref, 'refs/tags/v')
6556
needs: validation

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
import org.gradle.util.GradleVersion
1717

1818
plugins {
19-
id 'com.netflix.nebula.plugin-plugin' version '20.0.0'
20-
id 'com.netflix.nebula.optional-base' version '8.0.0'
19+
id 'com.netflix.nebula.plugin-plugin' version '20.2.0'
20+
id 'com.netflix.nebula.optional-base' version '9.0.0'
2121
id "org.jetbrains.kotlin.jvm" version "1.7.20"
2222
id 'java-gradle-plugin'
23-
id "org.gradle.test-retry" version "1.4.1"
23+
id "org.gradle.test-retry" version "1.5.0"
2424
}
2525

2626
description 'Gradle plugin to allow locking of dynamic dependency versions'
@@ -97,6 +97,8 @@ if (GradleVersion.version(project.gradle.gradleVersion) >= (GradleVersion.versio
9797
classes.dependsOn compileKotlin
9898
}
9999

100+
test.dependsOn jar
101+
100102
tasks.withType(Test) {
101103
testLogging {
102104
events "PASSED", "FAILED", "SKIPPED"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)