Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for libraryJar (0.16 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            File libraryJar = findFile(ArtifactInfo.ScalaLibraryID, scalaClasspath);
            URL[] libraryUrls;
            boolean isScala3 = false;
            try {
                File library3Jar = findFile(SCALA_3_LIBRARY_ID, scalaClasspath);
                isScala3 = true;
                libraryUrls = new URL[]{library3Jar.toURI().toURL(), libraryJar.toURI().toURL()};
            } catch (IllegalStateException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                if (nestedJar.exists()) {
                    nestedJar.delete()
                }
                nestedJarContents.zipTo(nestedJar)
                if (libraryJar.exists()) {
                    libraryJar.delete()
                }
                libraryJarContents.zipTo(libraryJar)
            }
    
            void createNestedInDirJar() {
                if (nestedInDirJar.exists()) {
                    nestedInDirJar.delete()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top