Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for mavenLocal (0.17 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    // tag::maven-local[]
    repositories {
        mavenLocal()
    }
    // end::maven-local[]
    
    // tag::maven-like-repo[]
    repositories {
        maven {
            url = uri("http://repo.mycompany.com/maven2")
        }
    }
    // end::maven-like-repo[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingResolveIntegrationTest.groovy

            when:
            buildScript """
                configurations {
                    local
                }
                repositories {
                    mavenLocal()
                }
                dependencies {
                    local "local:local:1.0"
                }
                task local(type: Sync) {
                    into 'local'
                    from configurations.local
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    // tag::maven-local[]
    repositories {
        mavenLocal()
    }
    // end::maven-local[]
    
    // tag::maven-like-repo[]
    repositories {
        maven {
            url "http://repo.mycompany.com/maven2"
        }
    }
    // end::maven-like-repo[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    plugins {
        `maven-publish`
    }
    
    publishing {
        publications {
            create<MavenPublication>("mavenJava") {
                from(components["java"])
            }
        }
        repositories {
            mavenLocal()
        }
    }
    ----
    3. *Apply your plugin:* when you want to use the plugin, include the plugin ID and version in the `plugins{}` block of the build file.
    +
    [source,kotlin]
    ----
    // Apply the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top