Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setModulePath (0.26 sec)

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

                modulePath = modulePaths.stream()
                    .map(File::new)
                    .collect(toImmutableList());
            }
            return modulePath;
        }
    
        @Override
        public void setModulePath(List<File> modulePath) {
            this.modulePath = modulePath;
        }
    
        @Override
        public List<File> getSourceRoots() {
            return sourceRoots;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

         * We only need them in {@link CompilationClassBackupService} so we know what files don't need a backup.
         */
        Set<String> getClassesToCompile();
    
        List<File> getModulePath();
    
        void setModulePath(List<File> modulePath);
    
        default boolean annotationProcessingConfigured() {
            return !getAnnotationProcessorPath().isEmpty() && !getCompileOptions().getCompilerArgs().contains("-proc:none");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        /**
         * The --module-path.
         *
         * @since 6.4
         */
        @Internal
        List<File> getModulePath();
    
        /**
         * The --module-path.
         *
         * @since 6.4
         */
        void setModulePath(List<File> modulePath);
    
        /**
         * The --module-path.
         *
         * @since 6.4
         */
        MinimalJavadocOptions modulePath(List<File> classpath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptGenerator.java

            this.defaultJvmOpts = defaultJvmOpts;
        }
    
        public void setClasspath(Iterable<String> classpath) {
            this.classpath = classpath;
        }
    
        public void setModulePath(Iterable<String> modulePath) {
            this.modulePath = modulePath;
        }
    
        public void setScriptRelPath(String scriptRelPath) {
            this.scriptRelPath = scriptRelPath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top