Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,548 for lib3 (0.14 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

            when:
            binary.lib(lib1)
            def sourceSet = Stub(DependentSourceSet) {
                getLibs() >> [sourceLib]
            }
            binary.inputs.add sourceSet
            binary.lib(lib2)
    
            and:
            1 * resolver.resolve({ NativeBinaryResolveResult result ->
                result.allResolutions*.input == [lib1, lib2, sourceLib]
            }) >> { NativeBinaryResolveResult result ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

                    implementation "test:lib2:2.0.0"
                }
    """
            file("src/main/swift/Lib.swift") << """
                import Lib1
                import Lib2
                class Lib {
                    init() {
                        Lib1.thing()
                        Lib2.thing()
                    }
                }
            """
    
            when:
            run("generateSwiftPmManifest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            when:
            configurationCacheRun("resolve1", "resolve2")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            where:
            repo                 | _
            new MavenFileRepo()  | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

                inCatalog('libs')
                forDependency('org', 'foo')
                versionRef('nope')
                existing('v1', 'v2')
            })
        }
    
        def "has all defined aliases"() {
            builder.library("foo-lib1", "org", "foo").version("lib-version")
            builder.library("foo-lib2", "org", "foo").version("lib-version2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            sharedLibrary("lib1/build/lib/main/debug/lib1").assertExists()
            sharedLibrary("lib2/build/lib/main/debug/lib2").assertExists()
            executable("build/exe/main/debug/app").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarProjectIntegrationTest.groovy

                  ear.libDirName = 'APP-INF/lib'
               }
    
            """
    
            when:
            run 'eclipse'
    
            then:
            def component = wtpComponent
            component.lib('lib1-api-1.0.jar').assertDeployedAt('/APP-INF/lib')
            component.lib('lib1-impl-1.0.jar').assertDeployedAt('/APP-INF/lib')
            component.lib('lib2-impl-2.0.jar').assertDeployedAt('/')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

            resolve.expectGraph {
                root(":b", "test:b:") {
                    project(":a", "test:a:") {
                        artifact(name: "lib1")
                        artifact(name: "not-a-lib", extension: "zip", type: "not-a-lib", fileName: "lib2.zip")
                    }
                }
            }
        }
    
        def "can define outgoing variants and artifacts for configuration"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib1.jar to lib1.jar.green")
    
            result.groupedOutput.transform("GreenMultiplier", "lib2.jar (project :lib)")
                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib2.jar to lib2.jar.green")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top