Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Pmd (0.02 sec)

  1. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/groovy/pmd-rules.xml

    <?xml version="1.0"?>
    <ruleset name="Custom ruleset"
        xmlns="http://pmd.sf.net/ruleset/1.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
        xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
      <description>
      This ruleset checks my code for bad stuff
      </description>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 419 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/kotlin/pmd-rules.xml

    <?xml version="1.0"?>
    <ruleset name="Custom ruleset"
        xmlns="http://pmd.sf.net/ruleset/1.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
        xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
      <description>
      This ruleset checks my code for bad stuff
      </description>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 419 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.Pmd.xml

                        <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>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/resources/META-INF/gradle-plugins/org.gradle.pmd.properties

    Tom Tresansky <******@****.***> 1687350218 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 62 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    +
    Runs PMD against the production Java source files.
    
    `pmdTest` — link:{groovyDslPath}/org.gradle.api.plugins.quality.Pmd.html[Pmd]::
    +
    Runs PMD against the test Java source files.
    
    The PMD plugin adds the following dependencies to tasks defined by the Java plugin.
    
    .PMD plugin - additional task dependencies
    [%header%autowidth,compact]
    |===
    | Task name | Depends on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/plugin.go

    	}
    
    	for _, pmd := range activeModules() {
    		if pmd.pluginpath == md.pluginpath {
    			md.bad = true
    			return "", nil, nil, "plugin already loaded"
    		}
    
    		if inRange(pmd.text, pmd.etext, md.text, md.etext) ||
    			inRange(pmd.bss, pmd.ebss, md.bss, md.ebss) ||
    			inRange(pmd.data, pmd.edata, md.data, md.edata) ||
    			inRange(pmd.types, pmd.etypes, md.types, md.etypes) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/groovy/build.gradle

    // tag::define-classpath[]
    configurations {
        pmd
    }
    
    dependencies {
        pmd group: 'pmd', name: 'pmd', version: '4.2.5'
    }
    // end::define-classpath[]
    
    // tag::use-classpath[]
    tasks.register('check') {
        doLast {
            ant.taskdef(name: 'pmd',
                        classname: 'net.sourceforge.pmd.ant.PMDTask',
                        classpath: configurations.pmd.asPath)
            ant.pmd(shortFilenames: 'true',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 697 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // end::customize-checkstyle-report[]
    
    // tag::customize-pmd[]
    pmd {
        isConsoleOutput = true
        toolVersion = "7.0.0"
        rulesMinimumPriority = 5
        ruleSets = listOf("category/java/errorprone.xml", "category/java/bestpractices.xml")
    }
    // end::customize-pmd[]
    
    // tag::pmd-threads[]
    pmd {
        threads = 4
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginToolchainsIntegrationTest.groovy

     */
    
    package org.gradle.api.plugins.quality.pmd
    
    import org.gradle.integtests.fixtures.AvailableJavaHomes
    import org.gradle.integtests.fixtures.jvm.JavaToolchainFixture
    import org.gradle.internal.jvm.Jvm
    import org.gradle.util.internal.VersionNumber
    import org.junit.Assume
    
    /**
     * Tests to ensure toolchains specified by the {@code PmdPlugin} and
     * {@code Pmd} tasks behave as expected.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 07:47:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

            if (version < VersionNumber.parse("5.0.0")) {
                // <5.x
                // NOTE: PMD 5.0.2 apparently introduces an element called "language" that serves the same purpose
                // http://sourceforge.net/p/pmd/bugs/1004/
                // http://java-pmd.30631.n5.nabble.com/pmd-pmd-db05bc-pmd-AntTask-support-for-language-td5710041.html
                antPmdArgs["targetjdk"] = parameters.targetJdk.get().name
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top