Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 588 for ivyA (0.06 sec)

  1. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/ivy/IvyPublishGcsIntegrationTest.groovy

        }
    
        def "can publish to a Gcs Ivy repository"() {
            given:
            def ivyRepo = server.remoteIvyRepo
    
            settingsFile << 'rootProject.name = "publishGcsTest"'
            buildFile << """
    apply plugin: 'java'
    apply plugin: 'ivy-publish'
    
    group = 'org.gradle.test'
    version = '1.0'
    
    publishing {
        repositories {
            ivy {
                url "${ivyRepo.uri}"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
            url = uri("http://repo.mycompany.com/repo")
        }
    }
    // end::ivy-repo[]
    
    // tag::local-ivy-repo[]
    repositories {
        ivy {
            // URL can refer to a local directory
            url = uri("../local-repo")
        }
    }
    // end::local-ivy-repo[]
    
    // tag::ivy-repo-with-maven-layout[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

     */
    fun RepositoryHandler.ivy(url: Any, action: IvyArtifactRepository.() -> Unit) =
        ivy {
            setUrl(url)
            action()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

            ivyRepo.module('ivy.configuration', 'projectB', '1.6')
                .configuration('other')
                .artifact([name: 'projectB-other', conf: 'other'])
                .publish()
    
            ivyRepo.module('ivy.configuration', 'projectD', '1.0')
                .dependsOn('ivy.configuration', 'projectB', '1.6')
                .publish()
    
            moduleA.dependsOn('ivy.configuration', 'projectD', '1.0').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishIssuesIntegTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy
    
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.ivy.IvyFileModule
    import org.gradle.test.fixtures.ivy.IvyFileRepository
    import org.spockframework.util.TextUtil
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         *
         * The following example demonstrates how to publish the 'java' component to a ivy repository.
         * <pre class='autoTested'>
         * plugins {
         *     id 'java'
         *     id 'ivy-publish'
         * }
         *
         * publishing {
         *   publications {
         *     ivy(IvyPublication) {
         *       from components.java
         *     }
         *   }
         * }
         * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            assert configurations.compile.collect { it.name } == ['projectA-1.2.jar', 'projectB-1.3.jar']
        }
    }
    """
    
            when:
            projectB.ivy.expectGet()
            projectB.jar.expectGet()
            projectAInRepo1.ivy.expectGetMissing()
            projectAInRepo2.pom.expectGet()
            projectAInRepo2.artifact.expectGet()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("ivy-publish/descriptor-customization")
        def "descriptor-customization sample with #dsl dsl"() {
            given:
            def sampleDir = sampleProject.dir.file(dsl)
            inDirectory(sampleDir)
    
            and:
            def fileRepo = ivy(sampleDir.file("build/repo"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyChangingModuleRemoteResolveIntegrationTest.groovy

            server.resetExpectations()
            // Server will be hit to get updated versions
            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
            module.jar.expectHead()
            module.getArtifact(name: 'other').expectGet()
            moduleB.ivy.expectGet()
            moduleB.jar.expectGet()
    
            and: "We request 1.1 again"
            run 'retrieve'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManager.java

         * process sets a system property at that moment.
         */
        private Ivy createNewIvyInstance() {
            return SystemProperties.getInstance().withSystemProperties(() -> Ivy.newInstance(new IvySettings()));
        }
    
        private void releaseIvy(Ivy ivy) {
            // cleanup
            ivy.getSettings().getResolvers().clear();
            ivy.getSettings().setDefaultResolver(null);
    
            lock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top