Skip to content

Commit

Permalink
Gradle 8.0-rc-1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jan 4, 2023
1 parent fb2c262 commit 425767b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/nebula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,6 @@ jobs:
- ${{ runner.os }}-gradlewrapper-
- name: Gradle build
run: ./gradlew --stacktrace build --scan
- name: Post-success actions
if: success()
run: ./gradlew jacocoTestReport coveralls
env:
CI_NAME: github_actions
CI_BUILD_NUMBER: ${{ github.sha }}
CI_BUILD_URL: 'https://github.com/${{ github.repository }}'
CI_BRANCH: ${{ github.ref }}
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: validation
Expand Down
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
import org.gradle.util.GradleVersion

plugins {
id 'com.netflix.nebula.plugin-plugin' version '20.0.0'
id 'com.netflix.nebula.optional-base' version '8.0.0'
id 'com.netflix.nebula.plugin-plugin' version '20.2.0'
id 'com.netflix.nebula.optional-base' version '9.0.0'
id "org.jetbrains.kotlin.jvm" version "1.7.20"
id 'java-gradle-plugin'
id "org.gradle.test-retry" version "1.4.1"
id "org.gradle.test-retry" version "1.5.0"
}

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

test.dependsOn jar

tasks.withType(Test) {
testLogging {
events "PASSED", "FAILED", "SKIPPED"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 425767b

Please sign in to comment.