Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                parameters.ruleSetConfigFiles.each {
                    ruleset(it)
                }
    
                FileCollection auxClasspath = parameters.auxClasspath.filter(new FileExistFilter())
                if (!auxClasspath.isEmpty()) {
                    auxClasspath.addToAntBuilder(ant, 'auxclasspath', FileCollection.AntType.ResourceCollection)
                }
    
                reports.each { report ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

                task runExecOperationsJavaExec {
                    def runClasspath = sourceSets.main.runtimeClasspath
                    dependsOn runClasspath
                    def execOps = services.get(ExecOperations)
                    doLast {
                        // this is the same as project.javaexec
                        execOps.javaexec {
                            classpath = runClasspath
                            mainClass = "driver.Driver"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                }
    
                tasks.register("runWithExecOperations") {
                    dependsOn sourceSets.main.runtimeClasspath
                    def runExecutable = run.executable ? run.executable : null
                    def runClasspath = run.classpath
                    def runMain = run.mainClass
                    def runArgs = run.args
                    def execOps = services.get(ExecOperations)
                    doLast {
                        execOps.javaexec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top