https://gradle.com/ logo
Join SlackCommunities
Powered by
# community-support
  • s

    Slackbot

    02/10/2023, 6:14 PM
    This message was deleted.
    c
    p
    • 3
    • 3
  • s

    Slackbot

    02/10/2023, 9:18 PM
    This message was deleted.
    v
    k
    • 3
    • 3
  • s

    Slackbot

    02/11/2023, 10:15 PM
    This message was deleted.
    v
    d
    • 3
    • 6
  • s

    Slackbot

    02/13/2023, 5:19 PM
    This message was deleted.
    v
    s
    • 3
    • 4
  • c

    Cameron Price

    02/14/2023, 1:27 AM
    Execution failed for task ':runClient'.
    Process 'command ...jdks\corretto-17.0.6\bin\java.exe'' finished with non-zero exit value 1
  • s

    Slackbot

    02/14/2023, 1:27 AM
    This message was deleted.
    🧵 1
    v
    c
    e
    • 4
    • 8
  • d

    Doni

    02/14/2023, 7:23 AM
    anyone got this error on gradle 8?
    Copy code
    A problem occurred configuring project ':accommodation:booking:accommodation_booking_impl'.
          > Failed to notify project evaluation listener.
             > com.android.build.gradle.internal.crash.ExternalApiUsageException: java.lang.NoSuchMethodError: 'void org.gradle.api.internal.file.UnionFileCollection.<init>(org.gradle.api.internal.file.FileCollectionInternal[])'        
             > Extension with name 'generalFilters' does not exist. Currently registered extension names: [ext, filters, debugFilters, releaseFilters, stagingFilters]
  • e

    Emil Kantis

    02/14/2023, 9:04 AM
    I'm contributing to a lib where we would like to create an integration-test using gradle testkit to apply the lib and run tests w/ gradle. (see https://github.com/kotest/kotest/pull/3401#issuecomment-1429327833 for more context) Is there any way to get the gradle runner to perform dependency substition using the composite build invoking the runner?
  • s

    Slackbot

    02/14/2023, 11:05 AM
    This message was deleted.
    j
    • 2
    • 1
  • m

    Matias Duarte

    02/14/2023, 2:14 PM
    hello everyone, i need a hand with a little issue i have
  • m

    Matias Duarte

    02/14/2023, 2:15 PM
    i`m having this error and cannot resolve yet
    🧵 1
  • m

    Matias Duarte

    02/14/2023, 2:15 PM
    FAILURE: Build failed with an exception. * What went wrong: Gradle could not start your build.
    Could not initialize native services.
    > Failed to load native library 'native-platform.dll' for Windows 11 amd64. * Try:
    Run with --stacktrace option to get the stack trace.
    Run with --info or --debug option to get more log output.
    Run with --scan to get full insights.
    * Get more help at https://help.gradle.org
    🧵 3
  • s

    Slackbot

    02/14/2023, 2:15 PM
    This message was deleted.
    🧵 2
    v
    m
    • 3
    • 2
  • s

    Slackbot

    02/15/2023, 8:21 AM
    This message was deleted.
    v
    • 2
    • 1
  • s

    Slackbot

    02/15/2023, 8:26 AM
    This message was deleted.
    s
    j
    • 3
    • 4
  • s

    Slackbot

    02/15/2023, 9:25 AM
    This message was deleted.
    r
    v
    • 3
    • 4
  • s

    Slackbot

    02/15/2023, 12:29 PM
    This message was deleted.
    j
    e
    a
    • 4
    • 37
  • s

    Slackbot

    02/15/2023, 12:36 PM
    This message was deleted.
    j
    v
    • 3
    • 7
  • s

    Slackbot

    02/15/2023, 2:50 PM
    This message was deleted.
    v
    e
    s
    • 4
    • 7
  • s

    Slackbot

    02/15/2023, 4:34 PM
    This message was deleted.
    r
    c
    v
    • 4
    • 30
  • s

    Slackbot

    02/15/2023, 4:55 PM
    This message was deleted.
    v
    c
    • 3
    • 11
  • s

    Slackbot

    02/15/2023, 6:34 PM
    This message was deleted.
    t
    j
    • 3
    • 28
  • s

    Slackbot

    02/16/2023, 9:47 AM
    This message was deleted.
    j
    v
    • 3
    • 2
  • s

    Slackbot

    02/16/2023, 9:47 AM
    This message was deleted.
    v
    g
    • 3
    • 4
  • s

    Slackbot

    02/16/2023, 12:45 PM
    This message was deleted.
    l
    t
    • 3
    • 5
  • s

    Slackbot

    02/16/2023, 3:25 PM
    This message was deleted.
    v
    p
    • 3
    • 3
  • s

    Slackbot

    02/16/2023, 4:20 PM
    This message was deleted.
    v
    i
    • 3
    • 3
  • s

    Slackbot

    02/16/2023, 11:09 PM
    This message was deleted.
    c
    e
    • 3
    • 14
  • s

    Slackbot

    02/17/2023, 12:04 AM
    This message was deleted.
    e
    v
    j
    • 4
    • 10
  • r

    Rafael Costa

    02/17/2023, 3:46 PM
    Hi guys. I want to create a simple task which runs a bunch of our linters in sequence and fails (exiting early) if a task in the sequence fails. I had this, but some tasks are failing and the end result still says SUCCESS if the last task succeeds:
    Copy code
    afterEvaluate {
        task healthCheck(dependsOn: ['test', 'ktlintFormat', 'detekt', 'lint', 'connectedMockDebugAndroidTest']) {
            tasks.findByName('ktlintFormat').mustRunAfter 'test'
            tasks.findByName('detekt').mustRunAfter 'ktlintFormat'
            tasks.findByName('lint').mustRunAfter 'detekt'
            tasks.findByName('connectedMockDebugAndroidTest').mustRunAfter 'lint'
        }
    }
1...394041...102Latest