Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMainClass (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

        )
        Property<String> getMainClass();
    
        /**
         * Sets the fully qualified name of the main class to be executed.
         *
         * @param main the fully qualified name of the main class to be executed.
         *
         * @return this
         *
         * @deprecated Use {@link #getMainClass()}.set(main) instead. This method will be removed in Gradle 9.0.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            if (runAsModule) {
                execSpec.getMainModule().set("gradle.worker");
            }
            execSpec.getMainClass().set("worker." + GradleWorkerMain.class.getName());
            if (useOptionsFile) {
                // Use an options file to pass across application classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top