Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for anotherJar (0.1 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            when:
            def libDir = file('libs').createDir()
            jarWithClasses(libDir.file("somelib.jar"), Thing: 'interface Thing {}')
            def anotherJar = libDir.file("anotherlib.jar")
            jarWithClasses(anotherJar, Thing2: 'interface Thing2 {}')
            file("src/main/java/Foo.java") << "class Foo implements Thing, Thing2{}"
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

                task myJar(type: Jar) {
                    archiveClassifier = 'my'
                }
                task anotherJar(type: Jar) {
                    archiveBaseName = 'another'
                }
                artifacts {
                    implementation myJar
                    implementation anotherJar
                }
    """
    
            when:
            resolveArtifacts()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

            module.publish()
            def baseJar = module.artifactFile
            def extraJar = module.artifactFile(classifier: 'extra')
            def testsJar = module.artifactFile(classifier: 'tests')
            def anotherJar = mavenRepo.module('coolGroup', 'another', '1.0').publish().artifactFile
    
            //when:
            runEclipseTask """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz.txt

    []byte("00000")
    -- corpustesting/testdata/fuzz/FuzzPassString/1 --
    go test fuzz v1
    string("hello")
    -- corpustesting/testdata/fuzz/FuzzPanic/1 --
    malformed
    -- corpustesting/testdata/fuzz/FuzzInNestedDir/anotherdir/1 --
    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzWrongType/1 --
    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top