Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for usedForStartup (0.17 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)
Back to top