Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBootClassPath (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

            if (options.getBootClasspath() != null && !options.getBootClasspath().isEmpty()) {
                // Added so JavaDoc has the same behavior as JavaCompile regarding the bootClasspath
                getProjectLayout().files(options.getBootClasspath()).getAsPath();
            }
    
            if (!isTrue(options.getWindowTitle()) && isTrue(getTitle())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertNull(options.getDoclet());
            assertEmpty(options.getDocletpath());
            assertNull(options.getSource());
            assertEmpty(options.getClasspath());
            assertEmpty(options.getBootClasspath());
            assertEmpty(options.getExtDirs());
            assertEquals(options.getOutputLevel(), JavadocOutputLevel.QUIET);
            assertFalse(options.isBreakIterator());
            assertNull(options.getLocale());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            }
            if (compileOptions.getEncoding() != null) {
                args.add("-encoding");
                args.add(compileOptions.getEncoding());
            }
            String bootClasspath = compileOptions.getBootClasspath();
            if (bootClasspath != null) { //TODO: move bootclasspath to platform
                args.add("-bootclasspath");
                args.add(bootClasspath);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * See How Classes Are Found. for more details. Separate directories in classpathlist with semicolons (;).
         */
        @Override
        public List<File> getBootClasspath() {
            return bootClasspath.getValue();
        }
    
        @Override
        public void setBootClasspath(List<File> bootClasspath) {
            this.bootClasspath.setValue(bootClasspath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            setDocletpath(copyOrNull(original.getDocletpath()));
            setSource(original.getSource());
            setClasspath(copyOrNull(original.getClasspath()));
            setBootClasspath(copyOrNull(original.getBootClasspath()));
            setExtDirs(copyOrNull(original.getExtDirs()));
            setOutputLevel(original.getOutputLevel());
            setBreakIterator(original.isBreakIterator());
            setLocale(original.getLocale());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top