Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for manifestClasspath (0.45 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

         */
        val mainClassName: Property<String>
    }
    
    val app = extensions.create<LaunchableJar>("app")
    
    val manifestClasspath = configurations.dependencyScope("manifestClasspath")
    val resolveManifestClasspath = configurations.resolvable("resolveManifestClasspath") {
        isTransitive = false
        extendsFrom(manifestClasspath.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    tasks.jar.configure {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 21 18:38:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifestClasspath(""))).isEmpty();
      }
    
      public void testGetClassPathFromManifest_badClassPath() throws IOException {
        File jarFile = new File("base.jar");
        Manifest manifest = manifestClasspath("nosuchscheme:an_invalid^path");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest)).isEmpty();
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 21:00:51 UTC 2025
    - 23K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifestClasspath(""))).isEmpty();
      }
    
      public void testGetClassPathFromManifest_badClassPath() throws IOException {
        File jarFile = new File("base.jar");
        Manifest manifest = manifestClasspath("nosuchscheme:an_invalid^path");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest)).isEmpty();
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 21:00:51 UTC 2025
    - 25.7K bytes
    - Viewed (0)
Back to top