Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for ivyA (0.03 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            def repo3Name = "ivy"
            repo3.getName() >> { repo3Name }
            repo3.setName(_) >> { repo3Name = it[0] }
    
            repositoryFactory.createIvyRepository() >>> [repo1, repo2, repo3]
    
            when:
            handler.ivy {}
            handler.ivy {}
            handler.ivy {}
    
            then:
            repo1Name == "ivy"
            repo2Name == "ivy2"
            repo3Name == "ivy3"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyContextManager.java

        /**
         * Executes the given action against an Ivy instance. Sets up the Ivy context before the action and cleans up at the end.
         *
         * <p>The Ivy instance of the calling thread is reused if the thread is already executing an action against an Ivy instance.
         */
        void withIvy(Action<? super Ivy> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

                println "* GET IVY FILE"
                def ivy = resources.ivy
                provideHeadersForResource(response, ivy)
                ivy.writeContentTo(response.outputStream)
            }
    
            private void handleHeadIvy(HttpServletResponse response) {
                println "* HEAD IVY FILE"
                provideHeadersForResource(response, resources.ivy)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
                GET_HELP)
    
        }
    
        void "resolve missing dynamic dependencies from a SFTP Ivy repository"() {
            given:
            buildFile << """
                repositories {
                    ivy {
                        url "${ivySftpRepo.uri}"
                        credentials {
                            username 'sftp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    // limitations under the License.
    
    [[publishing_ivy]]
    = The Ivy Publish Plugin
    
    The Ivy Publish Plugin provides the ability to publish build artifacts in the http://ant.apache.org/ivy/[Apache Ivy] format, usually to a repository for consumption by other builds or projects. What is published is one or more artifacts created by the build, and an Ivy _module descriptor_ (normally `ivy.xml`) that describes the artifacts and the dependencies of the artifacts, if any.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "Ivy repository based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
    """
    apply plugin: "base"
    
    version = 1.0
    group = "test.group"
    
    uploadArchives {
        repositories {
            ivy { url uri("ivy-repo") }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

    import org.gradle.api.publish.ivy.internal.publisher.ContextualizingIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.DependencyResolverIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.ValidatingIvyPublisher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

        IvyDescriptor(File ivyFile) {
            def ivy = new XmlParser().parse(ivyFile)
            organisation = ivy.info[0].@organisation
            module = ivy.info[0].@module
            revision = ivy.info[0].@revision
            status = ivy.info[0].@status
            branch = ivy.info[0].@branch
            resolver = ivy.info[0].@resolver
            description = ivy.info[0].description[0]
            licenses = ivy.info[0].license
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top