Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 221 for organisation (0.18 sec)

  1. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/MavenGcsRepository.groovy

        }
    
        @Override
        MavenGcsModule module(String organisation, String module, String version = "1.0") {
            new MavenGcsModule(server, backingRepository.module(organisation, module, version), repositoryPath, bucket)
        }
    
        GcsDirectoryResource directoryList(String organisation, String module) {
            return new GcsDirectoryResource(server, bucket, this.module(organisation, module).backingModule.moduleDir.parentFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/RemoteIvyRepository.groovy

    interface RemoteIvyRepository extends IvyRepository {
        @Override
        RemoteIvyModule module(String organisation, String module)
    
        @Override
        RemoteIvyModule module(String organisation, String module, String revision)
    
        String getBaseIvyPattern()
    
        String getBaseArtifactPattern()
    
        RemoteResource directoryList(String organisation, String module)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

        }
    
        @Override
        SftpDirectoryResource directoryList(String organisation, String module) {
            return new SftpDirectoryResource(server, backingRepository.moduleDir(organisation, module))
        }
    
        IvySftpModule module(String organisation, String module, String revision = "1.0") {
            return new IvySftpModule(this, server, backingRepository.module(organisation, module, revision))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyPatternRepositoryLayout.java

         */
        void ivy(String pattern);
    
        /**
         * Tells whether a Maven style layout is to be used for the 'organisation' part, replacing any dots with forward slashes.
         * Defaults to {@code false}.
         */
        boolean getM2Compatible();
    
        /**
         * Sets whether a Maven style layout is to be used for the 'organisation' part, replacing any dots with forward slashes.
         * Defaults to {@code false}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 11 10:01:04 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            publications {
                extraComponent(IvyPublication) {
                    from components.java
                    organisation "extra.org"
                    module "extra-module"
                    revision "extra"
                }
                extra(IvyPublication) {
                    organisation "extra.org"
                    module "extra-module-2"
                    revision "extra"
                }
            }
        }
    }
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyRepository.groovy

    interface IvyRepository extends Repository {
        String getArtifactPattern()
    
        String getIvyPattern()
    
        @Override
        IvyModule module(String organisation, String module)
    
        @Override
        IvyModule module(String organisation, String module, String revision)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 970 bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/MavenS3Repository.groovy

        }
    
        URI getUri() {
            new URI("s3://${bucket}${repositoryPath}")
        }
    
        MavenS3Module module(String organisation, String module, String revision = "1.0") {
            new MavenS3Module(server, backingRepository.module(organisation, module, revision), repositoryPath, bucket)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/MavenRepositoryLayout.java

     *     <li>Artifacts: $baseUri/{@value IvyArtifactRepository#MAVEN_ARTIFACT_PATTERN}</li>
     *     <li>Ivy: $baseUri/{@value IvyArtifactRepository#MAVEN_IVY_PATTERN}</li>
     * </ul>
     *
     * Following the Maven convention, the 'organisation' value is further processed by replacing '.' with '/'.
     * Note that the resolver will follow the layout only, but will not use .pom files for meta data. Ivy metadata files are required/published.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/plugins/IvyPublishPluginTest.groovy

                module == project.name
                organisation == "foo"
                revision == "1.0"
                descriptor.status == "integration"
            }
    
            when:
            project.group = "changed-group"
            project.version = "changed-version"
    
            then:
            with(publishing.publications.test) {
                organisation == "changed-group"
                revision == "changed-version"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 392 bytes
    - Viewed (0)
Back to top