Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jvmJar (0.02 sec)

  1. buildSrc/src/main/kotlin/Osgi.kt

      val osgiApi = configurations.create("osgiApi")
      dependencies {
        osgiApi(kotlinOsgi)
      }
    
      // Call the convention when the task has finished, to modify the jar to contain OSGi metadata.
      tasks.named<Jar>("jvmJar").configure {
        val bundleExtension =
          extensions
            .create(
              BundleTaskExtension.NAME,
              BundleTaskExtension::class.java,
              this,
            ).apply {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. 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