Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for moduleVersion (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyLibraryIntegrationTest.groovy

                """
            }
            file("groovy-lib/src/main/resources/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule") << """
                moduleName=Test module
                moduleVersion=1.0-test
                extensionClasses=support.FrenchStrings
            """
            file("groovy-lib/src/main/groovy/support/FrenchStrings.groovy") << """
                package support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

            def result = deserialize(serialized)
    
            then:
            result.id == componentIdentifier
            result.selectionReason == ComponentSelectionReasons.requested()
            result.moduleVersion == newId('org', 'foo', '2.0')
            for (def variants : [result.selectedVariants, result.availableVariants]) {
                variants.size() == 2
                variants[0] == v1Result
                variants[1] == v2Result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorResolveIntegrationTest.groovy

                it.children.each { transitive ->
                    assert transitive.moduleGroup == "org.gradle.111"
                    assert transitive.moduleName == "module_111"
                    assert transitive.moduleVersion == "v_111"
                }
            }
            assert configurations.compile.collect { it.name } == ['test-1.45.jar', 'module_111-v_111.jar']
        }
    }
    """
            resolve.prepare()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/MavenVersionListerTest.groovy

        def repo = Mock(ExternalResourceRepository)
        def module = new DefaultModuleIdentifier("org.acme", "testproject")
        def result = new DefaultBuildableModuleVersionListingResolveResult()
        def moduleVersion = new DefaultModuleVersionIdentifier(module, "1.0")
        def artifact = new DefaultIvyArtifactName("testproject", "jar", "jar")
    
        def resourceAccessor = Mock(CacheAwareExternalResourceAccessor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top