Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,540 for jar1 (0.07 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

                        into "\$buildDir/jars"
                    }
                }
            """
            dependency buildC, "org.test:b2:1.0"
    
            when:
            resolveSucceeds(':resolveJars')
    
            then:
            assertTaskExecuted(':buildB', ":b2:jar")
            assertTaskExecuted(':buildC', ":jar")
            assertTaskExecuted(':buildB', ":b1:resolveJars")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

        @Internal
        val localRepo = project.objects.fileCollection()
    
        @get:Classpath
        val jars: SortedSet<File>
            get() = localRepo.asFileTree.matching {
                include("**/*.jar")
                exclude("**/*-javadoc.jar")
            }.files.toSortedSet()
    
        /**
         * Make sure this stays type FileCollection (lazy) to avoid losing dependency information.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 01 22:53:59 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. operator/pkg/util/yaml_test.go

    goo: tar
    ---
    hola: yo1
    foo: bar1
    goo: tar1
    `,
    			diff2: `hola: yo
    foo: bar
    notgoo: nottar
    `,
    			expect: ` foo: bar
    -goo: tar
     hola: yo
    +notgoo: nottar
     
    -foo: bar1
    -goo: tar1
    -hola: yo1
    +{}
     `,
    		},
    		{
    			desc: "no-diff",
    			diff1: `foo: bar
    ---
    foo: bar1
    `,
    			diff2: `foo: bar
    ---
    foo: bar1
    `,
    			expect: ``,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    def baselineJars = configurations.baselineJars
    def baseVersion = moduleIdentity.version.map { it.baseVersion.version }
    
    dependencies {
        baseline("gradle:gradle:${compatibilityBaselineVersion}@zip")
    
        // This transform takes the Gradle zip distribution,
        // and unzips the Gradle jar files that it contains in a directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        }
    
        def "wrapper JAR does not contain version in manifest"() {
            when:
            run "wrapper"
    
            then:
            def contents = file('contents')
            // ProGuard removes parent directory entries to keep JARs smaller
            file("gradle/wrapper/gradle-wrapper.jar").unzipToWithoutCheckingParentDirs(contents)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

        private static ProjectLibrary createProjectLibrary(String name, Iterable<File> jars) {
            ProjectLibrary projectLibrary = new ProjectLibrary();
            projectLibrary.setName(name);
            projectLibrary.setClasses(Sets.newLinkedHashSet(jars));
            return projectLibrary;
        }
    
        private static ProjectLibrary createScalaSdkLibrary(String name, Iterable<File> jars) {
            ProjectLibrary projectLibrary = new ProjectLibrary();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/producer/build.gradle.kts

    plugins {
        `java-library`
        `maven-publish`
        `instrumented-jars`
    }
    
    publishing {
        repositories {
            maven {
                setUrl("${buildDir}/repo")
            }
        }
        publications {
            create<MavenPublication>("myPublication") {
                from(components["myAdhocComponent"])
            }
        }
    }
    
    if (project.hasProperty("disableGradleMetadata")) {
        // tag::disable_gradle_metadata_publication[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 852 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

                        """
                        plugins {
                            id("org.gradle.kotlin.kotlin-dsl")
                        }
    
                        // Forces dependencies to be visible as jars
                        // so we get plugin spec accessors
                        ${forceJarsOnCompileClasspath()}
    
                        dependencies {
                            implementation(project(":producer"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

    project(':a') {
        apply plugin: 'base'
        configurations {
            configOne
            configTwo
        }
        task A1jar(type: Jar) {
            archiveFileName = 'A1.jar'
        }
        task A2jar(type: Jar) {
            archiveFileName = 'A2.jar'
        }
        task A3jar(type: Jar) {
            archiveFileName = 'A3.jar'
        }
        artifacts {
            configOne A1jar
            configTwo A2jar
            configTwo A3jar
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ META-INF/INDEX.LIST JarIndex-Version: 1.0 commons-codec-1.1.jar org/apache org/apache/commons/codec/language org/apache/commons/codec/base64 org org/apache/commons/codec/binary org/apache/commons org/apache/commons/codec...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
Back to top