Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 221 for organisation (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
            maven { url uri("maven-repo") }
        }
        publications {
            mainIvy(IvyPublication) {
                from components.java
                organisation 'test.org'
                module 'test-module'
                revision '1.1'
            }
            mainMaven(MavenPublication) {
                from components.java
                groupId 'test.groupId'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/DefaultIvyPatternRepositoryLayout.java

     * At least one artifact pattern must be specified. If no Ivy patterns are specified, then the artifact patterns will be used.
     * Optionally supports a Maven style layout for the 'organisation' part, replacing any dots with forward slashes.
     */
    public class DefaultIvyPatternRepositoryLayout extends AbstractRepositoryLayout implements IvyPatternRepositoryLayout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

        public static final String REVISION_KEY = "revision";
    
        public static final String MODULE_KEY = "module";
    
        public static final String ORGANISATION_KEY = "organisation";
    
        public static final String ORGANISATION_KEY2 = "organization";
    
        public static final String ORGANISATION_PATH_KEY = "orgPath";
    
        /**
         * Selective copy of {@link IvyPatternHelper#substituteTokens(String, Map)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishAndResolveIntegrationTest.groovy

                        }
                    }
                    publications {
                        jar(IvyPublication) {
                            from components.java
                            organisation group
                            module '${lib}'
                            revision '${version}'
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppCustomHeaderDependencyIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        def group(String repoType) {
            if (repoType == "ivy") {
                return "organisation"
            } else if (repoType == "maven") {
                return "groupId"
            } else {
                throw new IllegalArgumentException()
            }
        }
    
        def version(String repoType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top