Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for libs1 (0.08 sec)

  1. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.groovyNio)             { version { strictly(libs.groovyVersion) }}
            api(libs.groovyDoc)             { version { strictly(libs.groovyVersion) }}
            api(libs.groovyJson)            { version { strictly(libs.groovyVersion) }}
            api(libs.groovyTemplates)       { version { strictly(libs.groovyVersion) }}
            api(libs.groovyTest)            { version { strictly(libs.groovyVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                return 'maven-repo/thing/lib1/2.1/lib1-2.1.pom'.replace('/', File.separator)
            }
    
            @Override
            String getNewVersionInvalidatedResource() {
                return "file '$versionMetadataLocation'"
            }
    
            @Override
            void setup(AbstractIntegrationSpec owner) {
                owner.with {
                    mavenRepo.module("thing", "lib1", "2.1").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            and:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants('child-1.0.jar', 'parent_dep-1.2.jar', 'child_dep-1.7.jar')
    
            when:
            server.resetExpectations()
            file('libs').deleteDir()
    
            and:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants('child-1.0.jar', 'parent_dep-1.2.jar', 'child_dep-1.7.jar')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. subprojects/core/build.gradle.kts

        implementation(libs.asmCommons)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.errorProneAnnotations)
        implementation(libs.fastutil)
        implementation(libs.groovyAnt)
        implementation(libs.groovyJson)
        implementation(libs.groovyTemplates)
        implementation(libs.groovyXml)
        implementation(libs.slf4jApi)
        implementation(libs.tomlj) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

            then:
            executedInOrder ":buildB:b1:jar", ":buildB:jar"
            executedInOrder ":buildB:b2:myJar", ":buildB:jar"
            assertResolved buildB.file('build/libs/buildB-1.0.jar'), buildB.file('b1/build/libs/b1-1.0.jar'), buildB.file('b2/build/libs/b2-1.0-my.jar')
        }
    
        def "builds substituted dependency with file dependency"() {
            given:
            dependency 'org.test:buildB:1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

    """
            app.deck.writeToProject(file("lib1"))
            app.card.writeToProject(file("lib2"))
            app.shuffle.writeToProject(file("lib3"))
    
            expect:
            succeeds tasks(':lib1').debug.assemble
    
            result.assertTasksExecuted([':lib3', ':lib2'].collect { tasks(it).debug.allToLink }, tasks(':lib1').debug.allToAssemble)
            sharedLibrary("lib1/build/lib/main/debug/lib1").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            run 'retrieve'
    
            then: "Snapshots are downloaded"
            file('libs').assertHasDescendants('projectA-1.0-SNAPSHOT.jar', 'projectB-1.0-SNAPSHOT.jar', 'nonunique-1.0-SNAPSHOT.jar')
            def snapshotA = file('libs/projectA-1.0-SNAPSHOT.jar').snapshot()
            def snapshotNonUnique = file('libs/nonunique-1.0-SNAPSHOT.jar').snapshot()
    
            when: "We resolve with snapshots cached: no server requests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants('projectA-1.0.jar', 'projectB-1.0.jar')
            def snapshot = file('libs/projectA-1.0.jar').snapshot()
    
            when:
            server.resetExpectations()
            and:
            run 'retrieve'
    
            then:
            file('libs/projectA-1.0.jar').assertHasNotChangedSince(snapshot)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            given:
            def lib1 = ProjectBuilder.builder().withName("lib1").withParent(project).build()
    
            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
            project.pluginManager.apply("swift-library")
            lib1.pluginManager.apply("swift-library")
    
            project.dependencies.add("implementation", lib1)
    
            project.evaluate()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

    }
    """
            executer.withTasks("eclipse").run()
    
            def libs = classpath("a").libs
            assert classpath("a").projects.collect { it.name } == ['b']
            assert libs.size() == 1
            libs[0].assertHasJar(someLib2Jar)
    
            executer.withArgument("-PstrictDeps=true").withTasks("eclipse").run()
    
            libs = classpath("a").libs
            assert classpath("a").projects.collect { it.name } == ['b']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
Back to top