Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for m2Repo (0.11 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                    sign publishing.publications
                }
    
                tasks.register("cleanRepo") {
                    def m2Repo = layout.buildDirectory.dir("m2Repo").get().asFile
                    def ivyRepo = layout.buildDirectory.dir("ivyRepo").get().asFile
                    doLast {
                        m2Repo.deleteDir()
                        ivyRepo.deleteDir()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

                    artifacts {
                        $configurationName sourcesJar, javadocJar
                    }
                """
            }
        }
    
        TestFile m2RepoFile(String name) {
            file("build", "m2Repo", "sign", artifactId, version, name)
        }
    
        TestFile ivyRepoFile(String name) {
            file("build", "ivyRepo", name)
        }
    
        TestFile fileRepoFile(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

    // end::configure-publishing[]
                withBuildIdentifier()
    // tag::configure-publishing[]
            }
        }
    // end::enable-build-id[]
    
        repositories {
            maven {
                name = "myRepo"
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::enable-build-id[]
    }
    // end::configure-publishing[]
    // end::enable-build-id[]
    
    // tag::configure-generate-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    HelveticaNeue;\f1\fnil\fcharset0 Menlo-Regular;\f2\fnil\fcharset0 Menlo-Italic; } {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs24 \cf0 Task \f1 publish \f2\i MyLib \f1\i0 PublicationTo \f2\i MyRepo \f1\i0 Repository}WrapNOBounds{{336.3999964594841, 32.099998712539673}, {144, 67.83999964594841}}ClassShapedGraphicFo{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/build.gradle

    // end::configure-publishing[]
                withBuildIdentifier()
    // tag::configure-publishing[]
            }
        }
    // end::enable-build-id[]
    
        repositories {
            maven {
                name = 'myRepo'
                url = layout.buildDirectory.dir("repo")
            }
        }
    // tag::enable-build-id[]
    }
    // end::configure-publishing[]
    // end::enable-build-id[]
    
    // tag::configure-generate-task[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            def binaryAndSourcesInRepo = internalRepo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
            def localRepo = maven(temporaryFolder.createDir("m2_repo"))
            def binaryAndSourcesLocal = localRepo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
    
            when:
            args "-Dmaven.repo.local=${localRepo.rootDir.getAbsolutePath()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

        dependencies {
            compile 'group:projectA:1.0'
        }
    
        task retrieve(type: Sync) {
            into 'libs'
            from configurations.compile
        }
        """
    
            def m2Home = file("M2_REPO")
            def settingsFile = m2Home.file("conf/settings.xml")
            settingsFile << "invalid content... blabla"
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_setup.adoc

    The example also defines a file-based Maven repository with the name "myRepo". Such a file-based repository is convenient for a sample, but real-world builds typically work with HTTPS-based repository servers, such as Maven Central or an internal company server.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Once that's all done, you will be able to generate an Ivy module descriptor for each publication and publish them to one or more repositories.
    
    Let's say you have defined a publication named "myLibrary" and a repository named "myRepo".
    Ivy's Ant tasks would then map to the Gradle tasks like this:
    
     * `<deliver>` -> `generateDescriptorFileForMyLibraryPublication`
     * `<publish>` -> `publishMyLibraryPublicationToMyRepoRepository`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Image name or path for the proxy, default: "proxyv2".
      //
      // If registry or tag are not specified, global.hub and global.tag are used.
      //
      // Examples: my-proxy (uses global.hub/tag), docker.io/myrepo/my-proxy:v1.0.0
      string image = 14;
    
      // Lists the IP ranges of Istio egress traffic that the sidecar captures.
      //
      // Example: "172.30.0.0/16,172.20.0.0/16"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top