Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Auxclasspath (0.1 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            file("rule-using/build/reports/pmd/main.xml").
                assertContents(containsClass("org.gradle.ruleusing.Class1")).
                assertContents(containsText("auxclasspath configured"))
        }
    
        def "auxclasspath configured for test sourceset of rule-using project"() {
            Assume.assumeTrue(supportsAuxclasspath() && fileLockingIssuesSolved())
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

     * <p>
     * Declares a <code>pmd</code> configuration which needs to be configured with the PMD library to be used.
     * <p>
     * Declares a <code>pmdAux</code> configuration to add transitive compileOnly dependencies to the PMD's auxclasspath. This is only needed if PMD complains about NoClassDefFoundError during type
     * resolution.
     * <p>
     * For each source set that is to be analyzed, a {@link Pmd} task is created and configured to analyze all Java code.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                dependencies {
                   implementation project(':utils')
                }
    
                task printRunClasspath {
                    def runClasspath = run.classpath
                    doLast {
                        println runClasspath.collect{ it.name }.join(',')
                    }
                }
    
            '''
            file('utils/build.gradle') << '''
                apply plugin: 'java-library'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top