Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for someLib (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    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
    
    A module dependency can be substituted by a dependency to a local fork of the sources of that module, if the module itself is built with Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Adding a dependency using the `libs.someLib` notation works exactly like if you had hardcoded the group, artifact and version directly in the build script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

                }
            }
    
            when:
            allowFileSystemAccess(true)
            def snapshot = read(someDir)
            then:
            assertIsDirectorySnapshot(snapshot, someDir)
    
            when:
            allowFileSystemAccess(false)
            def subDir = someDir.file("sub")
            snapshot = read(subDir)
            then:
            assertIsDirectorySnapshot(snapshot, subDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

    '''
            when:
            run 'copy'
            then:
            file('dest').assertHasDescendants('someDir/1.txt')
        }
    
        @Issue("GRADLE-3310")
        def "handles gzip compressed tars from resources.gzip"() {
            given:
            TestFile tar = file('tar-contents')
            tar.create {
                someDir {
                    file '1.txt'
                    file '2.txt'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            File someDir = new TestFile(testDirectoryProvider.testDirectory, "testFile")
            someDir.createDir()
    
            when:
            publisher.publish(publication, repository)
    
            then:
            ivyArtifact.name >> "name"
            ivyArtifact.type >> "type"
            ivyArtifact.extension >> "ext"
            ivyArtifact.file >> someDir
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            childResolver.dirMode == 0x4
        }
    
        def canWalkDownTreeCreatedUsingFromIntegrationTest() {
    
            CopySpec child = parentSpec.from('somedir') { into 'child' }
            child.from('somedir') { into 'grandchild' }
            child.from('somedir') { into '/grandchild' }
    
            when:
            List<RelativePath> paths = new ArrayList<RelativePath>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            settingsFile << """
                include ':exe', ':some:lib', ':other:lib'
            """
            buildFile << """
                project(":exe") {
                    apply plugin: "cpp-application"
    
                    dependencies {
                        implementation project(':some:lib')
                    }
                }
                project(":some:lib") {
                    apply plugin: "cpp-library"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

                                    PropertyExpression fullExpression = hasSinglePropertyExpressionArgument(call);
                                    if (fullExpression != null) {
                                        // <versionCatalog>.plugins.someId
                                        // or <versionCatalog>.plugins.some.id
                                        // because the expression might be complex we rely on its textual representation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        println "processing \${input.name} using \${parameters.someDir.get().asFile.name}"
                        def output = outputs.file(input.name + ".green")
                        output.text = input.text + parameters.someDir.get().asFile.list().length + ".green"
                    }
                }
            """
    
            when:
            run(":a:resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            runEclipseTask """
    apply plugin: "java"
    apply plugin: "eclipse"
    
    repositories {
    	flatDir { dirs "${TextUtil.escapeString(repoDir)}" }
    }
    
    dependencies {
    	implementation "some:lib:1.0"
    }
            """
        }
    
        @Test
        @Issue("GRADLE-1706") // doesn't prove that the issue is fixed because the test also passes with 1.0-milestone-4
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top