Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCommon (0.1 sec)

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

                        selectedByRule()
                    }
                }
            }
    
            when:
            run "check"
    
            then:
            noExceptionThrown()
        }
    
        String getCommon() {
            """configurations { conf }
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
            task resolveConf {
                def files = configurations.conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    The project accessors are mapped from the _project path_.
    For example, if a project path is `:commons:utils:some:lib` then the project accessor will be `projects.commons.utils.some.lib` (which is the short-hand notation for `projects.getCommons().getUtils().getSome().getLib()`).
    
    A project name with kebab case (`some-lib`) or snake case (`some_lib`) will be converted to camel case in accessors: `projects.someLib`.
    
    === Local forks of module dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top