Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for JavaToolchainSpec (0.13 sec)

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

        public FileTree getSource() {
            return super.getSource();
        }
    
        /**
         * Configures the java compiler to be used to compile the Java source.
         *
         * @see org.gradle.jvm.toolchain.JavaToolchainSpec
         * @since 6.7
         */
        @Nested
        public Property<JavaCompiler> getJavaCompiler() {
            return javaCompiler;
        }
    
        /**
    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/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Even though these properties can be configured independently, the configuration must follow certain rules in order to form a _valid_ specification.
    
    A `JavaToolchainSpec` is considered _valid_ in two cases:
    
    1. when no properties have been set, i.e. the specification is _empty_;
    2. when `languageVersion` has been set, optionally followed by setting any other property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top