Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for annotationProcessor (0.37 sec)

  1. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

        compileOnly(project(":internal-instrumentation-api"))
        compileOnly(libs.asm)
        compileOnly(libs.asmUtil)
        compileOnly(libs.asmTree)
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    tasks.named<JavaCompile>("compileJava") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    
        testInterceptorsImplementation(platform(project(":distributions-dependencies")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                    toolchain {
                        languageVersion = JavaLanguageVersion.of(${testedJdkVersion.getMajorVersionNumber()})
                    }
                }
    
                dependencies {
                    annotationProcessor project(':processor')
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            generatedSourceFile("scala", "main", fqcn)
        }
    
        TestFile generatedSourceFile(String language, String sourceSet, String fqcn) {
            file("build/generated/sources/annotationProcessor/", language, sourceSet, fqcn)
        }
    
        TestFile groovyTestSourceFile(@Language("groovy") String source) {
            file("src/test/groovy/Test.groovy") << source
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

                    new CompilationClassBackupService(spec, result)
                );
            }
            Set<AnnotationProcessorDeclaration> annotationProcessors = spec.getEffectiveAnnotationProcessors();
            task = new AnnotationProcessingCompileTask(task, annotationProcessors, spec.getAnnotationProcessorPath(), result.getAnnotationProcessingResult());
            task = new ResourceCleaningCompilationTask(task, fileManager);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top