Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,286 for conventions (0.28 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

        Convention<AdditionRecordConventionReceiver> {
        override fun apply(receiver: AdditionRecordConventionReceiver) {
            receiver.receive(dataAdditionRecord)
        }
    }
    
    
    /**
     * A convention that applies a nested object access operation (e.g. foo { }).
     */
    class NestedObjectAccessConvention(private val nestedObjectAccessRecord: NestedObjectAccessRecord) :
        Convention<NestedObjectAccessRecordConventionReceiver> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'myproject.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.example' group by convention
    group = 'com.example'
    
    publishing {
        publications {
            library(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. hack/verify-cli-conventions.sh

    if ! output=$(clicheck 2>&1)
    then
    	echo "$output"
    	echo
    	echo "FAILURE: CLI is not following one or more required conventions."
    	exit 1
    else
    	echo "$output"
    	echo
      echo "SUCCESS: CLI is following all tested conventions."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    // Define Java conventions for this organization.
    // Projects need to use the Java, Checkstyle and Spotbugs plugins.
    
    // tag::apply-external-plugin[]
    plugins {
        id 'java'
        id 'checkstyle'
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.service-conventions.gradle

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/groovy/buildSrc/src/main/groovy/myproject.publishing-conventions.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 206 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/main/kotlin/myproject.library-conventions.gradle.kts

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        `java-library`
        `maven-publish`
        id("myproject.java-conventions")
    }
    // end::plugins[]
    
    // Projects have the 'com.example' group by convention
    group = "com.example"
    
    publishing {
        publications {
            create<MavenPublication>("library") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1000 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.library-conventions.gradle

    // Define Java Library conventions for this organization.
    // Projects need to use the organization's Java conventions and publish using Maven Publish
    
    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.myorg' group by convention
    group = 'com.myorg'
    
    publishing {
        publications {
            library(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top