Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for annotationProcessorGeneratedSourcesDirectory (0.68 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        public File getAnnotationProcessorGeneratedSourcesDirectory() {
            return annotationProcessorGeneratedSourcesDirectory;
        }
    
        public void setAnnotationProcessorGeneratedSourcesDirectory(@Nullable File annotationProcessorGeneratedSourcesDirectory) {
            this.annotationProcessorGeneratedSourcesDirectory = annotationProcessorGeneratedSourcesDirectory;
        }
    
        @Nullable
        public File getHeaderOutputDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.CompileOptions.xml

                </tr>
                <tr>
                    <td>annotationProcessorGeneratedSourcesDirectory</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.bundling.Zip.metadataCharset don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.compile.CompileOptions.annotationProcessorGeneratedSourcesDirectory don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.javadoc.Javadoc.destinationDir don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        @Deprecated
        @ReplacedBy("generatedSourceOutputDirectory")
        public File getAnnotationProcessorGeneratedSourcesDirectory() {
            DeprecationLogger.deprecateProperty(CompileOptions.class, "annotationProcessorGeneratedSourcesDirectory")
                .replaceWith("generatedSourceOutputDirectory")
                .willBeRemovedInGradle9()
                .withDslReference()
                .nagUser();
    
    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. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            buildFile << """
                plugins {
                    id("java")
                }
                tasks.withType(JavaCompile) {
                    doLast {
                        println(options.annotationProcessorGeneratedSourcesDirectory)
                    }
                }
            """
            file("src/main/java/com/example/Main.java") << """
                package com.example;
                public class Main {}
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task.options.generatedSourceOutputDirectory.asFile.orNull == new File(project.buildDir, 'generated/sources/annotationProcessor/java/main')
            task.options.annotationProcessorGeneratedSourcesDirectory == task.options.generatedSourceOutputDirectory.asFile.orNull
            task.options.headerOutputDirectory.asFile.orNull == new File(project.buildDir, 'generated/sources/headers/java/main')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

        }
    
        def "generates -s option"() {
            def outputDir = new File("build/generated-sources")
            spec.compileOptions.annotationProcessorGeneratedSourcesDirectory = outputDir
    
            expect:
            builder.build() == ["-g", "-sourcepath", "", "-proc:none", "-s", outputDir.path, USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", ""]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            project.pluginManager.apply(JavaBasePlugin)
            project.sourceSets.create('custom')
            def compileJava = project.tasks['compileCustomJava'] as JavaCompile
            compileJava.options.annotationProcessorGeneratedSourcesDirectory = generatedSourcesDir
    
            then:
            project.sourceSets.custom.output.generatedSourcesDirs.files == toLinkedSet(generatedSourcesDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    Appending output property name to build cache key: destinationDir
    Appending output property name to build cache key: options.annotationProcessorGeneratedSourcesDirectory
    Build cache key for task ':compileJava' is 8ebf682168823f662b9be34d27afdf77
    ----
    
    The log shows e.g. which source files constitute the `stableSources` for the `compileJava` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top