Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setTargetJdk (0.11 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

            return targetJdk;
        }
    
        /**
         * Sets the target jdk used with pmd.
         *
         * @param targetJdk The target jdk
         * @since 4.0
         */
        public void setTargetJdk(TargetJdk targetJdk) {
            this.targetJdk = targetJdk;
        }
    
        /**
         * The maximum number of failures to allow before stopping the build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         */
        @Input
        public TargetJdk getTargetJdk() {
            return targetJdk;
        }
    
        /**
         * The target JDK to use with PMD.
         */
        public void setTargetJdk(TargetJdk targetJdk) {
            this.targetJdk = targetJdk;
        }
    
        /**
         * The custom rule set to be used (if any). Replaces {@code ruleSetFiles}, except that it does not currently support multiple rule sets.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top