Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setAnnotationProcessorGeneratedSourcesDirectory (0.56 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

            createNewFile(new File(headerOutput, "some-header-file.class"))
            createNewFile(new File(headerOutput, "some-duplicated-file.class"))
            spec.getCompileOptions().setAnnotationProcessorGeneratedSourcesDirectory(annotationOutput)
            spec.getCompileOptions().setHeaderOutputDirectory(headerOutput)
            def classesToDelete = new PatternSet().include("**/*.class")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            replacedAccessors = {
                @ReplacedAccessor(value = GETTER, name = "getAnnotationProcessorGeneratedSourcesDirectory"),
                @ReplacedAccessor(value = SETTER, name = "setAnnotationProcessorGeneratedSourcesDirectory")
            },
            binaryCompatibility = ACCESSORS_KEPT,
            deprecation = @ReplacedDeprecation(removedIn = RemovedIn.GRADLE9, withDslReference = true)
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        }
    
        @Nullable
        public File getAnnotationProcessorGeneratedSourcesDirectory() {
            return annotationProcessorGeneratedSourcesDirectory;
        }
    
        public void setAnnotationProcessorGeneratedSourcesDirectory(@Nullable File annotationProcessorGeneratedSourcesDirectory) {
            this.annotationProcessorGeneratedSourcesDirectory = annotationProcessorGeneratedSourcesDirectory;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                "This is scheduled to be removed in Gradle 9.0. Please use the generatedSourceOutputDirectory property instead. ${getCompileOptionsLink()}")
        }
    
        def "CompileOptions.setAnnotationProcessorGeneratedSourcesDirectory(File) is deprecated"() {
            when:
            buildFile << """
                plugins {
                    id("java")
                }
                tasks.withType(JavaCompile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The following methods on `CompileOptions` are deprecated:
    
    - `getAnnotationProcessorGeneratedSourcesDirectory()`
    - `setAnnotationProcessorGeneratedSourcesDirectory(File)`
    - `setAnnotationProcessorGeneratedSourcesDirectory(Provider<File>)`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top