Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setModulePath (0.12 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            spec.setTempDir(getTemporaryDir());
            spec.setCompileClasspath(ImmutableList.copyOf(javaModuleDetector.inferClasspath(isModule, getClasspath())));
            spec.setModulePath(ImmutableList.copyOf(javaModuleDetector.inferModulePath(isModule, getClasspath())));
    
            if (isModule && !isSourcepathUserDefined) {
                compileOptions.setSourcepath(getProjectLayout().files(sourcesRoots));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

            generator.setExitEnvironmentVar(getExitEnvironmentVar());
            generator.setClasspath(getRelativePath(javaModuleDetector.inferClasspath(mainModule.isPresent(), getClasspath())));
            generator.setModulePath(getRelativePath(javaModuleDetector.inferModulePath(mainModule.isPresent(), getClasspath())));
            if (StringUtils.isEmpty(getExecutableDir())) {
                generator.setScriptRelPath(getUnixScript().getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

            this.classpath.setValue(classpath);
        }
    
        @Override
        public List<File> getModulePath() {
            return modulePath.getValue();
        }
    
        @Override
        public void setModulePath(List<File> modulePath) {
            this.modulePath.setValue(modulePath);
        }
    
        @Override
        public MinimalJavadocOptions modulePath(List<File> modulePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top