Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for jacocoAnt (0.48 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/PluginConfigurationAttributesIntegrationTest.groovy

            where:
            plugin       | configuration
            'antlr'      | 'antlr'
            'codenarc'   | 'codenarc'
            'jacoco'     | 'jacocoAgent'
            'jacoco'     | 'jacocoAnt'
            'pmd'        | 'pmd'
            'checkstyle' | 'checkstyle'
            'scala'      | 'zinc'
            'war'        | 'providedRuntime'
            'war'        | 'providedCompile'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.tasks.JacocoBase.xml

                    </tr>
                </thead>
                <tr>
                    <td>jacocoClasspath</td>
                    <td>
                        <literal>project.configurations.jacocoAnt</literal>
                    </td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginIntegrationTest.groovy

            then:
            output.contains "org.jacoco:org.jacoco.ant:"
        }
    
        def "allows configuring tool dependencies explicitly"() {
            when:
            buildFile << """
                dependencies {
                    //downgrade version:
                    jacocoAgent "org.jacoco:org.jacoco.agent:0.6.0.201210061924"
                    jacocoAnt "org.jacoco:org.jacoco.ant:0.6.0.201210061924"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

         * @since 3.4
         */
        public static final String DEFAULT_JACOCO_VERSION = "0.8.11";
        public static final String AGENT_CONFIGURATION_NAME = "jacocoAgent";
        public static final String ANT_CONFIGURATION_NAME = "jacocoAnt";
        public static final String PLUGIN_EXTENSION_NAME = "jacoco";
        private static final String COVERAGE_DATA_ELEMENTS_VARIANT_PREFIX = "coverageDataElementsFor";
    
        private final Instantiator instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    == Dependency management
    
    The JaCoCo plugin adds the following dependency configurations:
    
    .JaCoCo plugin - dependency configurations
    [%header%autowidth,compact]
    |===
    | Name          | Meaning
    
    | `jacocoAnt`
    | The JaCoCo Ant library used for running the `JacocoReport` and `JacocoCoverageVerification` tasks.
    
    | `jacocoAgent`
    | The JaCoCo agent library used for instrumenting the code under test.
    
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    | `codenarc`
    | `codenarc`
    
    | `pmd`
    | `pmd`
    
    | `checkstyle`
    | `checkstyle`
    
    | `antlr`
    | `antlr`
    
    | `jacoco`
    | `jacocoAnt`, `jacocoAgent`
    
    | `scala`
    | `zinc`
    
    | `war`
    | `providedCompile`, `providedRuntime`
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top