Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 362 for CLASSPATH (0.36 sec)

  1. mvnw

      fi
    fi
    
    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=$(cygpath --unix "$JAVA_HOME")
      [ -n "$CLASSPATH" ] &&
        CLASSPATH=$(cygpath --path --unix "$CLASSPATH")
    fi
    
    # For Mingw, ensure paths are in UNIX format before anything is touched
    if $mingw ; then
      [ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] &&
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            buildFile << """
                class CustomTask extends DefaultTask {
                    @${classpathType.name} File classpath
    
                    @OutputFile File output
    
                    @TaskAction execute() {}
                }
                task brokenClasspathInput(type: CustomTask) {
                    classpath = file '${brokenClasspathEntry}'
                    output = file '${output}'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                repositories {
                    maven {
                        url "${mavenHttpRepo.uri}"
                    }
                }
            """
        }
    
        def "can configure the runtime classpath to be consistent with the compile classpath"() {
            withCompileClasspathAsReference()
            def foo = mavenHttpRepo.module('org', 'foo', '1.0')
                .dependsOn("org", "transitive", "1.0")
                .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            }
            return bootstrapClasspath;
        }
    
        public void setBootstrapClasspath(FileCollection classpath) {
            internalGetBootstrapClasspath().setFrom(classpath);
        }
    
        public void setBootstrapClasspath(Object... classpath) {
            internalGetBootstrapClasspath().setFrom(classpath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    This only concerns very large multi-projects where a lot of classes are present on the classpath by using many `api` dependencies.
    To mitigate this, you can set the `org.gradle.java.compile-classpath-packaging` system property to `true` to change the behavior of the Java Library plugin to use jars instead of class folders for everything on the compile classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            Collection<File> classpath = cleanup(GLOBAL_SERVICES.get(ModuleRegistry.class).getAdditionalClassPath().getAsFiles());
            if (!OperatingSystem.current().isWindows()) {
                return classpath;
            }
            // Use a Class-Path manifest JAR to circumvent too long command line issues on Windows (cap 8191)
            // Classpath is huge here because it's the test runtime classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.internal.classpath.InstrumentedGroovyCallsHelper.withEntryPoint;
    import static org.gradle.internal.classpath.InstrumentedGroovyCallsTracker.CallKind.GET_PROPERTY;
    import static org.gradle.internal.classpath.InstrumentedGroovyCallsTracker.CallKind.INVOKE_METHOD;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

        moduleName: String,
        scriptFiles: Collection<String>,
        scriptDef: ScriptDefinition,
        classPath: Iterable<File>,
        logger: Logger,
        pathTranslation: (String) -> String
    ) = compileKotlinScriptModuleTo(
        outputDirectory,
        compilerOptions,
        moduleName,
        scriptFiles,
        scriptDef,
        classPath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        }
    
        /**
         * Returns the classpath containing the Ant ANTLR task implementation.
         *
         * @return The Ant task implementation classpath.
         */
        @Classpath
        public FileCollection getAntlrClasspath() {
            return antlrClasspath;
        }
    
        /**
         * Specifies the classpath containing the Ant ANTLR task implementation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                        public void execute(final GenerateEclipseClasspath task) {
                            task.setDescription("Generates the Eclipse classpath file.");
                            task.setInputFile(project.file(".classpath"));
                            task.setOutputFile(project.file(".classpath"));
                        }
                    });
                    addWorker(task, ECLIPSE_CP_TASK_NAME);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top