Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for AbstractCompile (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

            when: // already compiled shared script with different build classpath
            file('otherBuild/settings.gradle').touch()
            file('otherBuild/buildSrc/build.gradle') << """
            tasks.withType(AbstractCompile){
                options.compilerArgs = ['-proc:none']
            }
            """
    
            file('otherBuild/buildSrc/src/main/groovy/Thing.groovy') << """
            class Thing{}"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/SourceDirectorySet.java

         *
         * @param taskProvider the task responsible for compiling the sources (.e.g. compileJava)
         * @param mapping a mapping from the task to the task's output directory (e.g. AbstractCompile::getDestinationDirectory)
         * @since 6.1
         */
        <T extends Task> void compiledBy(TaskProvider<T> taskProvider, Function<T, DirectoryProperty> mapping);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 08:25:17 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

    
            if (kotlinVersion >= VersionNumber.parse("1.6") && kotlinVersion < VersionNumber.parse("1.7")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Configures the Java language version for this compile task ({@code --release} compiler flag).
         * <p>
         * If set, it will take precedences over the {@link AbstractCompile#getSourceCompatibility()} and {@link AbstractCompile#getTargetCompatibility()} settings.
         * <p>
         * This option is only taken into account by the {@link org.gradle.api.tasks.compile.JavaCompile} task.
         *
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.compile.AbstractCompile.getDestinationDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractCompile.java:0)
    Method <org.gradle.api.tasks.compile.AbstractCompile.getSourceCompatibility()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

     *         //enable compilation in a separate daemon process
     *         options.fork = true
     *     }
     * </pre>
     */
    @CacheableTask
    public abstract class JavaCompile extends AbstractCompile implements HasCompileOptions {
        private final CompileOptions compileOptions;
        private final FileCollection stableSources = getProject().files((Callable<FileTree>) this::getSource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The `kotlin-gradle-plugin` version 1.7.10 changes the type hierarchy of the `KotlinCompile` task type.
    It doesn't extend from `AbstractCompile` anymore.
    If you used to select Kotlin compilation tasks by `AbstractCompile` you need to change that to `KotlinCompile`.
    
    For example, this
    ```kotlin
    tasks.named<AbstractCompile>("compileKotlin")
    ```
    
    needs to be changed to
    ```kotlin
    tasks.named<KotlinCompile>("compileKotlin")
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    /**
     * Compiles Groovy source files, and optionally, Java source files.
     */
    @CacheableTask
    public abstract class GroovyCompile extends AbstractCompile implements HasCompileOptions {
        private FileCollection groovyClasspath;
        private final ConfigurableFileCollection astTransformationClasspath;
        private final CompileOptions compileOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    The Groovy plugin adds a link:{groovyDslPath}/org.gradle.api.tasks.compile.GroovyCompile.html[GroovyCompile] task for each source set in the project.
    The task type shares much with the `JavaCompile` task by extending `AbstractCompile` (see <<building_java_projects.adoc#sec:compile, the relevant Java Plugin section>>).
    The `GroovyCompile` task supports most configuration options of the official Groovy compiler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    An external replacement, the link:https://gradle.github.io/playframework[Play Framework plugin], is available from the plugin portal.
    
    ==== Method `AbstractCompile.compile()` method has been removed
    
    The abstract method `compile()` is no longer declared by `AbstractCompile`.
    
    Tasks extending `AbstractCompile` can implement their own `@TaskAction` method with the name of their choosing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top