Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 300 for organisation (0.39 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyDependency.java

     *
     * @deprecated This type is not referenced by any other public API classes. It will be removed in Gradle 9.0
     */
    @Deprecated
    @HasInternalProtocol
    public interface IvyDependency {
    
        /**
         * The organisation value for this dependency.
         */
        String getOrganisation();
    
        /**
         * The module value for this dependency.
         */
        String getModule();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

        }
    
        void "can resolve dependencies from a remote Ivy repository with pattern layout and m2compatible: #m2Compatible"() {
            given:
            def remoteIvyRepo = server.getRemoteIvyRepo(m2Compatible, "[module]/[organisation]/[revision]")
            def module = remoteIvyRepo.module('org.group.name', 'projectA', '1.2')
            module.publish()
    
            and:
            buildFile << """
                repositories {
                    ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/output-ivy.xml

      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <info organisation="org.gradle.sample" module="project1" revision="1.0" status="integration" publication="«PUBLICATION-TIME-STAMP»">
        <description>The first project</description>
      </info>
      <configurations>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/DelegatingIvyModule.java

        public IvyModule withBranch(String branch) {
            backingModule.withBranch(branch);
            return t();
        }
    
        @Override
        public T dependsOn(String organisation, String module, String revision) {
            backingModule.dependsOn(organisation, module, revision);
            return t();
        }
    
        @Override
        public T dependsOn(Map<String, ?> attributes) {
            backingModule.dependsOn(attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/DisconnectedIvyXmlModuleDescriptorParserTest.groovy

            moduleDescriptor != null
            moduleDescriptor.status == 'release'
            moduleDescriptor.publicationDate != null
            moduleDescriptor.moduleRevisionId.organisation == 'myorg'
            moduleDescriptor.moduleRevisionId.moduleId.name == 'parentMod'
            moduleDescriptor.moduleRevisionId.revision == 'parentRev'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyDependency.java

    /**
     * Represents a dependency within an ivy descriptor file. This is the "Ivy view"
     * of the dependency, after being converted from Gradle's dependency model.
     */
    public interface IvyDependency {
        /**
         * The organisation value for this dependency.
         */
        String getOrganisation();
    
        /**
         * The module value for this dependency.
         */
        String getModule();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleMetadataAwarePublishingSpec.groovy

            if (notation instanceof CharSequence) {
                return notation
            }
            if (notation instanceof IvyModule) {
                return "group: '${sq(notation.organisation)}', name: '${sq(notation.module)}', version: '${sq(notation.revision)}'"
            }
            if (notation instanceof MavenModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleSpec.groovy

                            break
                    }
    
                } else if (module instanceof IvyModule) {
                    def directoryList = repository.directoryList(module.organisation, module.module)
                    switch (it) {
                        case InteractionExpectation.GET:
                            directoryList.expectGet()
                            break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePattern.java

        }
    
        @Override
        public ExternalResourceName toModuleVersionPath(ModuleComponentIdentifier componentIdentifier) {
            ImmutableMap<String, String> attributes = ImmutableMap.of(
                "organisation", componentIdentifier.getGroup(),
                "module", componentIdentifier.getModule(),
                "artifact", componentIdentifier.getModule(),
                "revision", componentIdentifier.getVersion()
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/metadata.md

    | `license_info`...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top