Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for someModule (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                         if (selection.candidate.module == 'someModule' && selection.candidate.version == '1.1') {
     *                             selection.reject("bad version '1.1' for 'someModule'")
     *                         }
     *                     }
     *                     all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customModule.xml

                    <SOURCES/>
                    <jarDirectory url="file://$MODULE_DIR$/ant/lib" recursive="false"/>
                </library>
            </orderEntry>
            <orderEntry type="module" module-name="someModule" exported="" />
        </component>
        <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultExcludeRuleConverterTest.groovy

                }
            }
        }
    
        @Issue("gradle/gradle#951")
        def "can create exclude rule for configuration name '#configurationName'"() {
            given:
            def group = 'someOrg'
            def module = 'someModule'
    
            when:
            Exclude exclude = new DefaultExcludeRuleConverter(moduleIdentifierFactory).convertExcludeRule(new DefaultExcludeRule(group, module))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            given:
            def classesDir = tmpDir.createDir("out/production/someModule")
            def staticResourcesDir = tmpDir.createDir("some-module/src/main/resources")
            def ignoredDir = tmpDir.createDir("ignore-me-out/production/someModule")
            def registry = defaultModuleRegistryFor([ignoredDir, classesDir, resourcesDir, staticResourcesDir, runtimeDep])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

                        [new JarDirectory(path('file://$MODULE_DIR$/ant/lib'), false)] as Set, "RUNTIME"),
                new ModuleDependency('someModule', null)]
    
        Module module = new Module(xmlTransformer, pathFactory)
    
        def loadFromReader() {
            when:
            module.load(customModuleReader)
    
            then:
            module.jdkName == "1.6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download.txt

    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    
    # download of an invalid path should report the error
    [short] skip
    ! go mod download this.domain.is.invalid/somemodule@v1.0.0
    stderr 'this.domain.is.invalid'
    ! go mod download -json this.domain.is.invalid/somemodule@v1.0.0
    stdout '"Error": ".*this.domain.is.invalid.*"'
    
    # download -json with version should print JSON
    go mod download -json 'rsc.io/quote@<=v1.5.0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * }
     *
     * dependencies {
     *   //configuring dependency to specific configuration of the module
     *   implementation configuration: 'someConf', group: 'org.someOrg', name: 'someModule', version: '1.0'
     *
     *   //configuring dependency on 'someLib' module
     *   implementation(group: 'org.myorg', name: 'someLib', version:'1.0') {
     *     //explicitly adding the dependency artifact:
     *     artifact {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.publish()
            module.allowAll()
    
            when:
            useIvyRepo(repo)
            buildFile << """
    dependencies {
        implementation 'some:module:1.0:api'
        testImplementation 'some:module:1.0:tests'
    }"""
    
            succeeds ideTask
    
            then:
            def sources = ["module-1.0-my-sources.jar", "other-source-1.0.jar"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

            given:
            buildFile << """
                plugins { id '$plugin' }
                dependencies {
                    $configuration 'some:module:1.0'
                }
            """
    
            when:
            if (deprecated(alternatives)) {
                executer.expectDeprecationWarning()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top