Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for jdkName (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

            }
            this.dependencies = dependencies; // overwrite rather than append dependencies
            if (!isNullOrEmpty(jdkName)) {
                this.jdkName = jdkName;
            } else {
                this.jdkName = Module.INHERITED;
            }
            return this.jdkName;
        }
    
        @Override
        protected void load(Node xml) {
            readJdkFromXml();
            readSourceAndExcludeFolderFromXml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            buildFile << """
    allprojects {
        apply plugin:'idea'
        apply plugin:'java'
    
        java.sourceCompatibility = 1.4
        java.targetCompatibility = 1.4
    }
    
    idea {
        project {
            jdkName   = 1.8
            languageLevel = 1.7
        }
    }
    
    project(':child1') {
        java.sourceCompatibility = 1.6
        java.targetCompatibility = 1.6
    }
    
    project(':child2') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         * <p>
         * See the examples in the docs for {@link IdeaProject}
         */
        public String getJdkName() {
            return jdkName;
        }
    
        public void setJdkName(String jdkName) {
            this.jdkName = jdkName;
        }
    
        /**
         * The default Java language Level to use for this project.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        public void configure(List<IdeaModule> modules,
                              String jdkName, IdeaLanguageLevel languageLevel, JavaVersion bytecodeVersion,
                              Collection<String> wildcards, Collection<ProjectLibrary> projectLibraries, String vcs) {
            if (!isNullOrEmpty(jdkName)) {
                jdk = new Jdk(jdkName, languageLevel);
            }
            this.bytecodeVersion = bytecodeVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public String getJdkName() {
            return jdkName;
        }
    
        public void setJdkName(String jdkName) {
            this.jdkName = jdkName;
        }
    
        /**
         * The module specific language Level to use for this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            downloadJavadoc = true
            downloadSources = false
    
            inheritOutputDirs = false
            outputDir = file('muchBetterOutputDir')
            testOutputDir = file('muchBetterTestOutputDir')
    
            jdkName = '1.6'
    
            iml {
                generateTo = file('customImlFolder')
    
                withXml {
                    def node = it.asNode()
                    node.appendNode('someInterestingConfiguration', 'hey!')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            checkModel(actual, expected, [
                { it.parent },
                { it.name },
                { it.description },
                { it.jdkName },
                { it.languageLevel.level },
                [{ it.children }, { a, e -> checkIdeaModule(a, e) }],
            ])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                ConventionMapping conventionMapping = ((IConventionAware) ideaProject).getConventionMapping();
                conventionMapping.map("jdkName", new Callable<String>() {
                    @Override
                    public String call() {
                        return JavaVersion.current().toString();
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

                                    <jdkHome>/usr/lib/jvm/adoptopenjdk-16.jdk</jdkHome>
                                    </configuration>
                                    </toolchain>
                                    <toolchain>
                                    <type>jdk</type>
                                    <configuration>
                                    <jdkHome>/usr/lib/jvm/temurin-17.jdk</jdkHome>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                languageVersionSettings,
                jdkHome,
            )
        }
    
        private fun initialiseVirtualFileFinderServices(
            environment: KotlinCoreProjectEnvironment,
            modules: List<KtModule>,
            sourceFiles: List<PsiFileSystemItem>,
            languageVersionSettings: LanguageVersionSettings,
            jdkHome: Path?,
        ) {
            val project = environment.project
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top