Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IvyPublisher (0.19 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/IvyPublisher.java

    package org.gradle.api.publish.ivy.internal.publisher;
    
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository;
    
    /**
     * Used by the `ivy-publish` plugin to publish Ivy modules.
     */
    public interface IvyPublisher {
        void publish(IvyNormalizedPublication publication, IvyArtifactRepository repository);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 934 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ContextualizingIvyPublisher.java

    public class ContextualizingIvyPublisher implements IvyPublisher {
        private final IvyPublisher ivyPublisher;
        private final IvyContextManager ivyContextManager;
    
        public ContextualizingIvyPublisher(IvyPublisher ivyPublisher, IvyContextManager ivyContextManager) {
            this.ivyPublisher = ivyPublisher;
            this.ivyContextManager = ivyContextManager;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

        private static class BuildServices implements ServiceRegistrationProvider {
            @Provides
            IvyPublisher createIvyPublisher(IvyContextManager ivyContextManager, ImmutableModuleIdentifierFactory moduleIdentifierFactory, FileResourceRepository fileResourceRepository, IvyMutableModuleMetadataFactory metadataFactory) {
                IvyPublisher publisher = new DependencyResolverIvyPublisher();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisher.java

    import java.util.Set;
    
    public class ValidatingIvyPublisher implements IvyPublisher {
        private final DescriptorParseContext parserSettings = new DisconnectedDescriptorParseContext();
        private final IvyPublisher delegate;
        private final DisconnectedIvyXmlModuleDescriptorParser moduleDescriptorParser;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/DependencyResolverIvyPublisher.java

    import org.gradle.internal.component.model.DefaultIvyArtifactName;
    import org.gradle.internal.component.model.IvyArtifactName;
    
    import java.util.concurrent.Callable;
    
    public class DependencyResolverIvyPublisher implements IvyPublisher {
        private final NetworkOperationBackOffAndRetry<Void> networkOperationBackOffAndRetry = new NetworkOperationBackOffAndRetry<>();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyNormalizedPublication;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.PathSensitivity;
    import org.gradle.api.tasks.TaskAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.provider.ValueSourceParameters> is not annotated with @ServiceScope in (ValueSourceParameters.java:0)
    Class <org.gradle.api.publish.ivy.internal.publisher.IvyPublisher> is not annotated with @ServiceScope in (IvyPublisher.java:0)
    Class <org.gradle.api.publish.maven.internal.dependencies.VersionRangeMapper> is not annotated with @ServiceScope in (VersionRangeMapper.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

    class ValidatingIvyPublisherTest extends Specification {
        @Rule
        final TestNameTestDirectoryProvider testDirectoryProvider = new TestNameTestDirectoryProvider(getClass())
    
        def delegate = Mock(IvyPublisher)
        DefaultImmutableModuleIdentifierFactory moduleIdentifierFactory = new DefaultImmutableModuleIdentifierFactory()
        IvyMutableModuleMetadataFactory metadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.publish.ivy.internal.publisher.IvyPublisher> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (IvyPublisher.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top