Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for jvmJar (0.03 sec)

  1. okhttp/build.gradle.kts

      classpath = compileKotlinTask.libraries
      modularity.inferModulePath.set(true)
    }
    
    // Call the convention when the task has finished, to modify the jar to contain OSGi metadata.
    tasks.named<Jar>("jvmJar").configure {
      manifest {
        attributes(
          "Multi-Release" to true,
        )
      }
    
      from(compileJavaModuleInfo.get().destinationDirectory) {
        into("META-INF/versions/9/")
      }
    }
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top