Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 356 for organisation (0.15 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            ""             | "module"   | "version"       | "organisation cannot be empty"
            "organisation" | ""         | "version"       | "module name cannot be empty"
            "organisation" | "module"   | ""              | "revision cannot be empty"
            "org\t"        | "module"   | "version"       | "organisation cannot contain ISO control character '\\u0009'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

        def "encodes coordinates for XML and unicode"() {
            when:
            descriptor.coordinates.organisation.set('org-ぴ₦ガき∆ç√∫')
            descriptor.coordinates.module.set('module-<tag attrib="value"/>-markup')
            descriptor.coordinates.revision.set('version-&"')
    
            then:
            with (ivyXml) {
                info.@organisation == 'org-ぴ₦ガき∆ç√∫'
                info.@module == 'module-<tag attrib="value"/>-markup'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-2.1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="2.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
    - 394 bytes
    - Viewed (0)
Back to top