Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for moduleVersion (0.27 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

        public DefaultResolvedComponentResult(
            ModuleVersionIdentifier moduleVersion, ComponentSelectionReason selectionReason, ComponentIdentifier componentId,
            Map<Long, ResolvedVariantResult> selectedVariants, List<ResolvedVariantResult> allVariants, @Nullable String repositoryName
        ) {
            this.moduleVersion = moduleVersion;
            this.selectionReason = selectionReason;
            this.componentId = componentId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerMultiVersionIntegrationTest.groovy

                    doLast {
                        assert result.get().dependencies.find { it.selected.moduleVersion.group == "org.scala-sbt" && it.selected.moduleVersion.name == "zinc_2.13" && it.selected.moduleVersion.version == "${version}" }
                    }
                }
            """
            args("--info")
        }
    
        def "can build with configured zinc compiler version" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

                this.groupPath = groupId.replace('.', '/');
                this.artifactId = artifactId;
                this.moduleVersion = moduleVersion;
                this.artifactVersion = moduleVersion;
            }
    
            /**
             * Return the location of the module `maven-metadata.xml`, which lists all published versions for a Maven module.
             */
            ExternalResourceName getMetadataLocation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

            "'$projectName:$taskName'"
        }
    
        @Override
        String declareDependency(String moduleName, String moduleVersion) {
            "project(':$moduleName')"
        }
    
        @Override
        String declaredDependencyId(String moduleName, String moduleVersion) {
            "projectId('$moduleName')"
        }
    
        @Override
        void moduleDefinition(String name, String definition) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseExternalDependency.java

        private final File file;
        private final File javadoc;
        private final File source;
    
        private final ModuleVersionIdentifier identifier;
        private final GradleModuleVersion moduleVersion;
    
        private final boolean resolved;
        private final DefaultEclipseComponentSelector attemptedSelector;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

            this.repoName = repoName;
        }
    
        @Override
        public void visitComponentDetails(ComponentIdentifier componentId, ModuleVersionIdentifier moduleVersion) {
            this.componentId = componentId;
            this.moduleVersion = moduleVersion;
        }
    
        @Override
        public void visitSelectedVariant(Long id, ResolvedVariantResult variant) {
            selectedVariants.put(id, variant);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/gradle3235/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    moduleName=test-extension-module
    moduleVersion=1.0.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 101 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-static-extensions/kotlin/buildSrc/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    moduleName=Test module for documentation
    moduleVersion=1.0-doc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/MissingLocalArtifactMetadataTest.groovy

        }
    
        def "is equal when all attributes and module version are the same"() {
            def moduleVersion = DefaultModuleVersionIdentifier.newId("group", "module", "version")
            def componentId = DefaultModuleComponentIdentifier.newId(moduleVersion)
    
            def withClassifier = localArtifactIdentifier(componentId, "name", "type", "ext", 'classifier')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludesMultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

        }
    
        @Override
        String declareDependency(String moduleName, String moduleVersion) {
            "project(':$moduleName')"
        }
    
        @Override
        String declaredDependencyId(String moduleName, String moduleVersion) {
            "projectId('$moduleName')"
        }
    
        @Override
        void moduleDefinition(String name, String definition) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 16 07:51:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
Back to top