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 8572372 commit 4d5aa93
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 15 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/nebula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,6 @@ jobs:
- ${{ runner.os }}-gradlewrapper-
- name: Gradle build
run: ./gradlew --info --stacktrace build
- 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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


plugins {
id 'com.netflix.nebula.plugin-plugin' version '20.0.0'
id 'com.netflix.nebula.plugin-plugin' version '20.2.0'
}

description 'Plugins to add provided and optional configurations'
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ dependencies {
def output = result.standardOutput.readLines().join('\n').replaceAll("'implementation '", "'implementation'")

then:
output.contains("""compileClasspath - Compile classpath for source set 'main'.
\\--- foo:bar:2.4
output.contains("""compileClasspath - Compile classpath for source set 'main'.""")
output.contains("""\\--- foo:bar:2.4
\\--- custom:baz:5.1.27
""")
Expand Down Expand Up @@ -82,8 +82,8 @@ dependencies {
def output = result.standardOutput.readLines().join('\n').replaceAll("'implementation '", "'implementation'")

then:
output.contains("""compileClasspath - Compile classpath for source set 'main'.
\\--- foo:bar:2.4
output.contains("""compileClasspath - Compile classpath for source set 'main'.""")
output.contains("""\\--- foo:bar:2.4
""")
!result.standardOutput.contains('custom:baz:5.1.27')
Expand Down

0 comments on commit 4d5aa93

Please # to comment.