Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Description (0.23 sec)

  1. build-logic-commons/code-quality-rules/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("java-library")
    }
    description = "Provides a custom CodeNarc rule used by the Gradle build"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. build.gradle.kts

      }
    }
    
    allprojects {
      group = "com.squareup.okhttp3"
      version = "5.0.0-SNAPSHOT"
    
      repositories {
        mavenCentral()
        google()
      }
    
      tasks.create("downloadDependencies") {
        description = "Download all dependencies to the Gradle cache"
        doLast {
          for (configuration in configurations) {
            if (configuration.isCanBeResolved) {
              configuration.files
            }
          }
        }
      }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:32:42 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. build-logic-commons/build.gradle.kts

    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Nov 11 14:22:22 GMT 2021
    - 183 bytes
    - Viewed (0)
  4. build-logic/build-init-samples/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate samples using internal build init APIs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("org.gradle.guides:gradle-guides-plugin")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm") {
            because("This is a transitive dependency of 'gradle-guides-plugin' not declared there")
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 442 bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    group = "gradlebuild"
    
    description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        compileOnly("com.gradle:develocity-gradle-plugin:3.17.2")
    
        api(platform(project(":build-platform")))
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 977 bytes
    - Viewed (0)
  6. build-logic/integration-testing/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to create and configure integration, cross-version and distribution tests"
    
    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Jan 06 17:21:17 GMT 2024
    - 675 bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides a plugin to define the version and name for subproject publications"
    
    group = "gradlebuild"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        api(platform(project(":build-platform")))
    
        implementation(project(":basics"))
    
        implementation("com.google.code.gson:gson")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 424 bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure Kotlin DSL and patch the Kotlin compiler for use in Kotlin subprojects"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":dependency-modules"))
        implementation(project(":jvm"))
        implementation(project(":kotlin-dsl-shared-runtime"))
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:08 GMT 2023
    - 737 bytes
    - Viewed (0)
  9. build-logic-commons/basics/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugins for configuring miscellaneous things (repositories, reproducibility, minify)"
    
    group = "gradlebuild"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Oct 01 12:13:59 GMT 2023
    - 981 bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for configuring japicmp-gradle-plugin to detect binary incompatible changes"
    
    dependencies {
        api("me.champeau.gradle:japicmp-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation("com.google.code.gson:gson")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 905 bytes
    - Viewed (0)
Back to top