Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 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. src/cmd/go/testdata/vcstest/git/v2repo.txt

    Bryan C. Mills <******@****.***> 1666708130 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 592 bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/vcstest/go/v2module.txt

    handle dir
    
    -- v2/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 167 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top