Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for moduleVersion (0.33 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                    @TaskAction
                    void test() {
                        def resolved = result.get().dependencies
                        assert declared.get() == resolved*.selected*.moduleVersion*.name as Set
                    }
                }
    
                allprojects {
                    configurations {
                        foo
                    }
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    moduleName=model-core
    moduleVersion=1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 713 bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    moduleName=dependency-management
    moduleVersion=1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 23:56:47 UTC 2022
    - 748 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    moduleName=model-core-tests
    moduleVersion=1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 727 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

        abstract String getProjectPath();
    
        abstract String dependsOnMechanism(String projectName, String taskName);
    
        abstract String declareDependency(String moduleName, String moduleVersion);
    
        abstract String declaredDependencyId(String moduleName, String moduleVersion);
    
        abstract void moduleDefinition(String name, String definition);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add("-classpath");
            args.add(Joiner.on(File.pathSeparatorChar).join(classpath));
    
            if (!modulePath.isEmpty()) {
                if (moduleVersion != null) {
                    args.add("--module-version");
                    args.add(moduleVersion);
                }
                args.add("--module-path");
                args.add(Joiner.on(File.pathSeparatorChar).join(modulePath));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedComponentVisitor.java

        /**
         * Visit graph independent details of the component.
         */
        void visitComponentDetails(ComponentIdentifier componentId, ModuleVersionIdentifier moduleVersion);
    
        /**
         * Visit a selected variant of the component.
         */
        void visitSelectedVariant(Long id, ResolvedVariantResult variant);
    
        /**
         * Visit variants of the component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

                        println "scriptTask - " + this.getClass().classLoader.getResource('d/v.txt').text
                    }
                }
    
                task buildscriptDependencies {
                    def moduleVersion = buildscript.configurations.classpath.incoming.artifacts.artifacts
                        .collect { it.id }
                        .findAll { it.componentIdentifier instanceof ModuleComponentIdentifier }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicySpec.groovy

                    assert !t.changing
                    t.refresh()
                }
            })
            cachePolicy.moduleExpiry(moduleComponent('g', 'n', 'v'), moduleVersion('group', 'name', 'version'), Duration.ofMillis(5)).mustCheck
        }
    
        def "provides details of cached changing module"() {
            expect:
            cachePolicy.eachModule(new Action<ModuleResolutionControl>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

        // https://github.com/gradle/configuration-cache/issues/183
        val modules = provider {
            embeddedKotlinBaseDependencies.incoming.resolutionResult.allComponents
                .asSequence()
                .mapNotNull { it.moduleVersion }
                .filter { it.name !in skippedModules }
                .associate { "${it.group}:${it.name}" to it.version }
        }
    
        doLast {
            ReproduciblePropertiesWriter.store(
                modules.get(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top