Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for usedForStartup (0.11 sec)

  1. platforms/core-runtime/instrumentation-agent/build.gradle.kts

    }
    
    description = "A Java agent implementation that instruments loaded classes"
    
    // Agent's premain is invoked before main(), so it should not cause the startup to fail because of the too new class file format.
    gradlebuildJava.usedForStartup()
    
    tasks.named<Jar>("jar") {
        manifest {
            attributes(mapOf(
                "Premain-Class" to "org.gradle.instrumentation.agent.Agent",
            ))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 468 bytes
    - Viewed (0)
  2. platforms/core-runtime/gradle-cli-main/build.gradle.kts

        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    app {
        mainClassName = "org.gradle.launcher.GradleMain"
    }
    
    dependencies {
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":build-process-services"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/extension/UnitTestAndCompileExtension.kt

    ) {
    
        /**
         * Enforces **Java 6** compatibility.
         */
        fun usedInWorkers() {
            enforceCompatibility(6)
        }
    
        /**
         * Enforces **Java 6** compatibility.
         */
        fun usedForStartup() {
            enforceCompatibility(6)
        }
    
        /**
         * Enforces **Java 7** compatibility.
         */
        fun usedInToolingApi() {
            enforceCompatibility(7)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 08:55:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top