Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JvmCompilation (0.05 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt

     *
     * All of these workarounds should be generally avoided, but, with this data we can configure the
     * compile tasks to permit some of these requirements.
     */
    abstract class JvmCompilation {
    
        abstract val name: String
    
        /**
         * Set this flag to true if the compilation compiles against JDK internal classes.
         *
         * This workaround should be used sparingly.
         */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Sep 19 05:45:14 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompileExtension.kt

            return addCompilationFrom(sourceSet.get())
        }
    
        fun Project.addCompilationFrom(sourceSet: NamedDomainObjectProvider<SourceSet>, configure: JvmCompilation.() -> Unit): JvmCompilation {
            return addCompilationFrom(sourceSet.get(), configure)
        }
    
        fun Project.addCompilationFrom(sourceSet: SourceSet): JvmCompilation {
            return compilations.create(sourceSet.name) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 24 14:00:52 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.jvm-compile.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("java-base")
    }
    
    // Creates the `jvmCompile` extension, which is a container for JvmCompilation instances.
    // JvmCompilation instances control the way each source set is compiled -- most importantly,
    // it controls the JVM version of the compilation. This allows each source set within a project
    // to compile to different JVM versions.
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 24 13:46:12 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top