Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 582 for artifactOps (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyDownloadBuildOperationsIntegrationTest.groovy

            // TODO - should have an event for graph resolution as well
    
            def artifactsOps = buildOperations.all(ResolveArtifactsBuildOperationType)
            artifactsOps.size() == 1
    
            def artifactOps = buildOperations.all(DownloadArtifactBuildOperationType)
            artifactOps.size() == 1
            artifactOps[0].details.artifactIdentifier == 'impl-1.3.jar (org.utils:impl:1.3)'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    [[sec:publishing_custom_artifacts_to_maven]]
    == Adding custom artifacts to a publication
    
    --
    Instead of thinking in terms of artifacts, you should embrace the variant aware model of Gradle.
    It is expected that a single module may need multiple artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(ArtifactDeployer.class).deploy(...)}.
         *
         * @param repository the repository where to deploy artifacts
         * @param artifacts the artifacts to deploy
         * @throws org.apache.maven.api.services.ArtifactDeployerException if the artifacts deployment failed
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    Under the covers the `testImplementation` and `implementation` configurations form an inheritance hierarchy by calling the method link:{groovyDslPath}/org.gradle.api.artifacts.Configuration.html#org.gradle.api.artifacts.Configuration:extendsFrom(org.gradle.api.artifacts.Configuration++[]++)[Configuration.extendsFrom(org.gradle.api.artifacts.Configuration++[]++)].
    A configuration can extend any other configuration irrespective of its definition in the build script or a plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

            <profile>
                <id>junit-release</id>
                <!--
                Signs all artifacts before deploying to Maven Central.
                -->
                <build>
                    <plugins>
                        <plugin>
                            <!--
                            The goal is to sign all artifacts so that the user may verify them before downloading.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildTreeScopeServices.java

    import org.gradle.api.internal.artifacts.ivyservice.modulecache.artifacts.InMemoryModuleArtifactsCache;
    import org.gradle.api.internal.artifacts.ivyservice.modulecache.artifacts.ModuleArtifactCache;
    import org.gradle.api.internal.artifacts.ivyservice.modulecache.artifacts.ReadOnlyModuleArtifactCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

            compile 'org:test2:1.0'
        }
        artifacts {
            compile file('b.jar')
        }
    }
    
    task show {
        inputs.files configurations.compile
        def artifacts = configurations.compile.${expression}
        doLast {
            println "files: " + artifacts.collect { it.file.name }
            println "ids: " + artifacts.collect { it.id.displayName }
            println "unique ids: " + artifacts.collect { it.id }.unique()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyManagementServices.java

     */
    package org.gradle.api.internal.artifacts;
    
    import org.gradle.StartParameter;
    import org.gradle.api.Describable;
    import org.gradle.api.artifacts.dsl.ArtifactHandler;
    import org.gradle.api.artifacts.dsl.ComponentMetadataHandler;
    import org.gradle.api.artifacts.dsl.ComponentModuleMetadataHandler;
    import org.gradle.api.artifacts.dsl.DependencyConstraintHandler;
    import org.gradle.api.artifacts.dsl.DependencyFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            }
        }.artifacts
        inputs.files artifacts.artifactFiles
        doLast {
            println "files: " + artifacts.collect { it.file.name }
            println "artifacts: " + artifacts.collect { it.file.name + " (" + it.id.componentIdentifier + ")" }
            println "components: " + artifacts.collect { it.id.componentIdentifier }
            println "variants: " + artifacts.collect { it.variant.attributes }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top