Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,415 for Reports (0.12 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
            file("build/reports/project/tasks.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

            buildDir.file('reports/codenarc/main.html').assertIsFile()
            buildDir.file('reports/codenarc/test.html').assertIsFile()
            buildDir.file('reports/pmd/main.html').assertIsFile()
            buildDir.file('reports/pmd/main.xml').assertIsFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/build.xml

                </batchtest>
                <formatter type="xml"/>
            </junit>
            <!--<junitreport toDir="\${build.dir}">-->
                <!--<fileset dir="\${test.reports.dir}" includes="*.xml"/>-->
                <!--<report todir="\${test.reports.dir}"/>-->
            <!--</junitreport>-->
        </target>
    
        <target name="jar" depends="compile">
            <jar destfile="\${build.dir}/production.jar">
                <fileset dir="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    We plan to add much more to the existing reports and create additional ones in future releases of Gradle.
    
    
    [[sec:project_reports_usage]]
    == Usage
    
    To use the Project report plugin, include the following in your build script:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

        public DependencyReportContainer reports(Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        @Override
        public DependencyReportContainer reports(Action<? super DependencyReportContainer> configureAction) {
            configureAction.execute(reports);
            return reports;
        }
    
        @Inject
        protected ObjectFactory getObjectFactory() {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

         */
        T getReports();
    
        /**
         * Allow configuration of the report container by closure.
         *
         * <pre>
         * reports {
         *   html {
         *     required false
         *   }
         *   xml.outputLocation = "build/reports/myReport.xml"
         * }
         * </pre>
         *
         * @param closure The configuration
         * @return The report container
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoReport.java

            if (reports.getHtml().getRequired().get()) {
                antBuilder.invokeMethod("html", new Object[]{
                    ImmutableMap.<String, Object>of("destdir", reports.getHtml().getOutputLocation().getAsFile().get())
                });
            }
            if (reports.getXml().getRequired().get()) {
                antBuilder.invokeMethod("xml", new Object[]{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CodeNarcPluginTest.groovy

            task.maxPriority3Violations == 200
            task.reports.enabled*.name == ["xml"]
            task.reports.xml.outputLocation.asFile.get() == project.file("codenarc-reports/custom.xml")
            task.ignoreFailures == true
        }
    
        def "can customize task directly"() {
            CodeNarc task = project.tasks.create("codenarcCustom", CodeNarc)
    
            task.reports.xml {
                required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top