Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pmdClasspath (0.45 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.Pmd.xml

                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>pmd</literal> plugin</td>
                    </tr>
                </thead>
                <tr>
                    <td>pmdClasspath</td>
                    <td><literal>project.configurations.pmd</literal></td>
                </tr>
                <tr>
                    <td>ruleSets</td>
                    <td><literal>project.pmd.ruleSets</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

        private final PmdActionParameters parameters
    
        PmdInvoker(PmdActionParameters parameters) {
            this.parameters = parameters
        }
    
        void execute(AntBuilderDelegate ant) {
            FileCollection pmdClasspath = parameters.getPmdClasspath().filter(new FileExistFilter())
    
            // PMD uses java.class.path to determine it's implementation classpath for incremental analysis
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginToolchainsIntegrationTest.groovy

                FileCollection pmdFileCollection = configuration
    
                tasks.register("myPmd", Pmd) {
                    maxFailures = 0
                    source = fileTree("\$projectDir/src/main")
                    pmdClasspath = pmdFileCollection
                    ruleSetFiles = files()
                    ruleSets = ["category/java/errorprone.xml"]
                    rulesMinimumPriority = 5
                    targetJdk = TargetJdk.VERSION_1_4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 07:47:10 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top