Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withoutManifest (0.18 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

         * <p>
         * <pre>
         *     jar("path/to/file.jar") {
         *         manifest {  // can be withoutManifest()
         *             mainAttributes.putValue("Multi-Release", "true")
         *         }
         *
         *         entry("Foo.class", fooBytes)
         *         versionedEntry(11, "Foo.class", fooBytesForJava11)
         *     }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
            def transformed = jar(testDir.file("transformed.jar")) {
                withoutManifest()
    
                entry("Foo.class", INSTRUMENTED_CLASS)
            }
    
            TransformedClassPath cp = classPath((original): transformed)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top