Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 423 for myproduct (0.3 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/android-application/src/main/kotlin/com.example.android-application.gradle.kts

    plugins {
        id("com.android.application")
        id("org.jetbrains.kotlin.android")
    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.commons.gradle

    plugins {
        id('java')
        id('com.example.jacoco')
    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    dependencies {
        implementation(platform('com.example.platform:product-platform'))
    
        testImplementation(platform('com.example.platform:test-platform'))
        testImplementation('org.junit.jupiter:junit-jupiter')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 505 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/commons/src/main/kotlin/com.example.commons.gradle.kts

    plugins {
        id("java")
        id("com.example.jacoco")
    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    dependencies {
        implementation(platform("com.example.platform:product-platform"))
    
        testImplementation(platform("com.example.platform:test-platform"))
        testImplementation("org.junit.jupiter:junit-jupiter")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/swiftpm/Product.java

    package org.gradle.swiftpm;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A product in a Swift Package Manager package.
     *
     * @since 4.6
     */
    @HasInternalProtocol
    public interface Product extends Named {
        /**
         * Returns the name of this product.
         */
        @Override
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 955 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/groovy/buildSrc/src/main/groovy/myproject.greeting.gradle

    tasks.register("greet", com.example.GreetingTask) {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/kotlin/buildSrc/src/main/kotlin/myproject.greeting.gradle.kts

    tasks.register<com.example.GreetingTask>("greet") {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

    // 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)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/groovy/buildSrc/src/main/groovy/myproject.java-library-conventions.gradle

    plugins {
        id 'java-library'
        id 'myproject.publishing-conventions'
    }
    
    publishing {
        publications {
            maven(MavenPublication) {
                from components.java
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 194 bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/kotlin/buildSrc/src/main/kotlin/myproject.java-library-conventions.gradle.kts

    plugins {
        id("java-library")
        id("myproject.publishing-conventions")
    }
    
    publishing {
        publications {
            create<MavenPublication>("maven") {
                from(components["java"])
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
Back to top