Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getJacocoClasspath (0.17 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoBase.java

        private FileCollection jacocoClasspath;
    
        /**
         * Classpath containing Jacoco classes for use by the task.
         */
        @Classpath
        public FileCollection getJacocoClasspath() {
            return jacocoClasspath;
        }
    
        public void setJacocoClasspath(FileCollection jacocoClasspath) {
            this.jacocoClasspath = jacocoClasspath;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoCoverageVerification.java

            return violationRules;
        }
    
        @TaskAction
        public void check() throws IOException {
            JacocoCheckResult checkResult = new AntJacocoCheck(getAntBuilder()).execute(
                getJacocoClasspath(),
                projectName,
                getAllClassDirs().filter(File::exists),
                getAllSourceDirs().filter(File::exists),
                getSourceEncoding().getOrNull(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReport.java

            configureAction.execute(reports);
            return reports;
        }
    
        @TaskAction
        public void generate() {
            new AntJacocoReport(getAntBuilder()).execute(
                getJacocoClasspath(),
                projectName.get(),
                getAllClassDirs().filter(File::exists),
                getAllSourceDirs().filter(File::exists),
                getSourceEncoding().getOrNull(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.nativeplatform.tasks.InstallExecutable.getLibs()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (InstallExecutable.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top