Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for setRevision (0.22 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            descriptor.getCoordinates().getModule().set(module);
        }
    
        @Override
        public String getRevision() {
            return descriptor.getCoordinates().getRevision().get();
        }
    
        @Override
        public void setRevision(String revision) {
            descriptor.getCoordinates().getRevision().set(revision);
        }
    
        @Override
        public PublicationArtifactSet<IvyArtifact> getPublishableArtifacts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         */
        void setModule(String module);
    
        /**
         * Returns the revision for this publication.
         */
        String getRevision();
    
        /**
         * Sets the revision for this publication.
         */
        void setRevision(String revision);
    
        /**
         * Configures the version mapping strategy.
         *
         * For example, to use resolved versions for runtime dependencies:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/IvyPublicationCoordinates.java

    import org.gradle.api.provider.Property;
    
    public interface IvyPublicationCoordinates {
    
        Property<String> getOrganisation();
    
        Property<String> getModule();
    
        Property<String> getRevision();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 876 bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyDependency.java

         */
        String getOrganisation();
    
        /**
         * The module value for this dependency.
         */
        String getModule();
    
        /**
         * The revision value for this dependency.
         */
        String getRevision();
    
        /**
         * The configuration mapping for this dependency. This is mapped to the
         * {@code conf} field on the Ivy dependency element.
         */
        String getConfMapping();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/ComponentStateFactory.java

    import org.gradle.internal.component.model.ComponentGraphSpecificResolveState;
    
    import javax.annotation.Nullable;
    
    public interface ComponentStateFactory<T extends ComponentResolutionState> {
        T getRevision(ComponentIdentifier componentIdentifier, ModuleVersionIdentifier id, @Nullable ComponentGraphResolveState state, @Nullable ComponentGraphSpecificResolveState graphState);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/DelegatingIvyModule.java

            return backingModule.getModule();
        }
    
        @Override
        public String getVersion() {
            return backingModule.getVersion();
        }
    
        @Override
        public String getRevision() {
            return backingModule.getRevision();
        }
    
        @Override
        public IvyDescriptor getParsedIvy() {
            return backingModule.getParsedIvy();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleDescriptorConverter.java

            ModuleComponentSelector requested = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId(revisionId.getOrganisation(), revisionId.getName()), new DefaultImmutableVersionConstraint(revisionId.getRevision()));
    
            ListMultimap<String, String> configMappings = ArrayListMultimap.create();
            for (Map.Entry<String, List<String>> entry : readConfigMappings(dependencyDescriptor).entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyDependency.java

         */
        String getOrganisation();
    
        /**
         * The module value for this dependency.
         */
        String getModule();
    
        /**
         * The revision value for this dependency.
         */
        String getRevision();
    
        /**
         * The configuration mapping string that will be output for this dependency.
         * A null value indicates that no "conf" attribute will be written for this dependency.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/DefaultIvyDependency.java

        @Override
        public String getOrganisation() {
            return organisation;
        }
    
        @Override
        public String getModule() {
            return module;
        }
    
        @Override
        public String getRevision() {
            return revision;
        }
    
        @Nullable
        @Override
        public String getRevConstraint() {
            return revConstraint;
        }
    
        @Override
        public String getConfMapping() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            def descriptor = ivyDescriptor()
            descriptor.coordinates.getOrganisation().set(group)
            descriptor.coordinates.getModule().set(name)
            descriptor.coordinates.getRevision().set(version)
    
            def publication = new IvyNormalizedPublication("pub-name", coordinates, ivyFile(descriptor), emptySet())
    
            when:
            publisher.publish(publication, repository)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top