Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCompileJavaTaskName (1.13 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            final TaskProvider<JavaCompile> compileTask = project.getTasks().register(sourceSet.getCompileJavaTaskName(), JavaCompile.class, javaCompile -> {
                ConventionMapping conventionMapping = javaCompile.getConventionMapping();
                conventionMapping.map("classpath", sourceSet::getCompileClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        String getProcessResourcesTaskName();
    
        /**
         * Returns the name of the compile Java task for this source set.
         *
         * @return The task name. Never returns null.
         */
        String getCompileJavaTaskName();
    
        /**
         * Returns the name of a compile task for this source set.
         *
         * @param language The language to be compiled.
         * @return The task name. Never returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            RoleBasedConfigurationContainerInternal configurations = project.getConfigurations();
            TaskContainer tasks = project.getTasks();
    
            this.compileJava = tasks.named(sourceSet.getCompileJavaTaskName(), JavaCompile.class);
            this.jar = registerOrGetJarTask(sourceSet, tasks);
    
            // If extendProductionCode=false, the source set has already created these configurations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top