Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 541 for Bradley (0.2 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

            val jsonText = URL("https://services.gradle.org/versions/nightly").readText()
            println(jsonText)
            val versionInfo = Gson().fromJson(jsonText, VersionBuildTimeInfo::class.java)
            ReleasedVersion(versionInfo.version, versionInfo.buildTime)
        }
    }
    
    tasks.register<UpdateAgpVersions>("updateAgpVersions") {
        comment = " Generated - Update by running `./gradlew updateAgpVersions`"
        minimumSupportedMinor = "7.3"
    Plain Text
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Nov 29 10:17:36 GMT 2023
    - 2K bytes
    - Viewed (0)
  2. gradlew

    #       within the Gradle project.
    #
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    
    # Attempt to set APP_HOME
    
    # Resolve links: $0 may be a link
    app_path=$0
    
    # Need this for daisy-chained symlinks.
    while
        APP_HOME=${app_path%"${app_path##*/}"}  # leaves a trailing /; empty if no leading path
    Shell Script
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Sun Dec 24 09:00:26 GMT 2023
    - 8.5K bytes
    - Viewed (0)
  3. gradlew.bat

    set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
    
    
    @rem Execute Gradle
    "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
    
    :end
    @rem End local scope for the variables with windows NT shell
    if %ERRORLEVEL% equ 0 goto mainEnd
    
    :fail
    Batch File
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Fri Nov 25 16:14:58 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  4. build.gradle.kts

    @file:Suppress("UnstableApiUsage")
    
    import com.diffplug.gradle.spotless.KotlinExtension
    import com.diffplug.gradle.spotless.SpotlessExtension
    import com.vanniktech.maven.publish.MavenPublishBaseExtension
    import com.vanniktech.maven.publish.SonatypeHost
    import java.net.URI
    import kotlinx.validation.ApiValidationExtension
    import org.gradle.api.tasks.testing.logging.TestExceptionFormat
    import org.jetbrains.dokka.gradle.DokkaTaskPartial
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Sun Mar 17 14:46:34 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  5. build-logic/packaging/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for building Gradle distributions"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation")) {
            // TODO turn this around: move corresponding code to this project and let docs depend on it
    Plain Text
    - Registered: Wed Jan 24 11:36:10 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 704 bytes
    - Viewed (0)
  6. gradle.properties

    org.gradle.caching=true
    org.gradle.jvmargs='-Dfile.encoding=UTF-8'
    org.gradle.parallel=true
    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Properties
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Sat Jan 20 09:58:21 GMT 2024
    - 343 bytes
    - Viewed (0)
  7. build-logic/build.gradle.kts

            if (jvmArgs.size > 1) {
                throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
                    "which may cause two daemons to be spawned on CI and in IDEA. " +
                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Jan 24 02:52:56 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  8. build-logic/buildquality/build.gradle.kts

            exclude(group = "com.google.guava")
        }
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation(kotlin("gradle-plugin"))
        implementation(kotlin("compiler-embeddable") as String) {
            because("Required by IncubatingApiReportTask")
        }
        implementation("com.gradle:develocity-gradle-plugin") {
            because("Arch-test plugin configures the PTS extension")
        }
    
    Plain Text
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Apr 03 13:29:44 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  9. build-logic/jvm/build.gradle.kts

        implementation("org.ow2.asm:asm")
        implementation("org.ow2.asm:asm-commons")
        implementation("com.google.code.gson:gson")
        implementation("com.gradle:gradle-enterprise-gradle-plugin")
    
        implementation("com.thoughtworks.qdox:qdox") {
            because("ParameterNamesIndex")
        }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 782 bytes
    - Viewed (0)
  10. build-logic/idea/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that configures IntelliJ's idea-ext plugin"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 297 bytes
    - Viewed (0)
Back to top