Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for Bradley (0.25 sec)

  1. 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 19 11:42:09 GMT 2024
    - Last Modified: Sat Jan 20 09:58:21 GMT 2024
    - 343 bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/build.gradle.kts

        implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.1.0")
    
        implementation("org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:4.4.0")
        // This Kotlin version should only be updated when updating the above kotlin-dsl version
        implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Apr 11 15:54:06 GMT 2024
    - 977 bytes
    - Viewed (0)
  3. build-logic/gradle.properties

    org.gradle.jvmargs=-Xmx2500m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    Properties
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 24 02:52:56 GMT 2024
    - 173 bytes
    - Viewed (0)
  4. build.gradle.kts

    @file:Suppress("UnstableApiUsage")
    
    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
    import org.jetbrains.kotlin.gradle.dsl.kotlinExtension
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Thu Apr 18 01:32:42 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  5. build-logic-commons/build-platform/build.gradle.kts

    dependencies {
        constraints {
            api("org.gradle.guides:gradle-guides-plugin:0.23")
            api("org.apache.ant:ant:1.10.13") // Bump the version brought in transitively by gradle-guides-plugin
            api("com.gradle:develocity-gradle-plugin:3.17.1") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Apr 11 15:54:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/build.gradle.kts

    import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
    
    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    dependencies {
        implementation(project(":core:descriptors.jvm"))
        implementation(project(":compiler:frontend"))
        implementation(project(":compiler:frontend.java"))
        implementation(project(":analysis:analysis-api-impl-base"))
        implementation(project(":analysis:analysis-internal-utils"))
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Thu Mar 28 16:10:07 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  7. .idea/inspectionProfiles/Gradle.xml

    <component name="InspectionProjectProfileManager">
      <profile version="1.0">
        <option name="myName" value="Gradle" />
        <inspection_tool class="21f28a86-2ba8-3048-9ce1-b6f10d4d4a12" enabled="true" level="WEAK WARNING" enabled_by_default="true" editorAttributes="INFO_ATTRIBUTES" />
        <inspection_tool class="62125fc1-a999-3cf1-9b9b-a30b4375d9bf" enabled="true" level="WARNING" enabled_by_default="true" />
    XML
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

     */
    
    repositories {
        maven {
            name = "Gradle public repository"
            url = uri("https://repo.gradle.org/gradle/public")
            content {
                includeGroup("net.rubygrapefruit")
                includeModule("flot", "flot")
                includeModule("org.gradle", "gradle-tooling-api")
                includeModule("org.gradle.buildtool.internal", "configuration-cache-report")
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. 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 17 11:36:08 GMT 2024
    - Last Modified: Wed Jan 24 02:52:56 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  10. 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 17 11:36:08 GMT 2024
    - Last Modified: Wed Apr 03 13:29:44 GMT 2024
    - 1.2K bytes
    - Viewed (0)
Back to top