Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTargetVersion (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/ParameterizedToolingModelCrossVersionSpec.groovy

                    }
                    Object buildAll(String modelName, Project project) {
                        return new DefaultCustomModel2();
                    }
                }
            """
    
            if (getTargetVersion() < GradleVersion.version("4.4")) {
                buildFile << """
                    class CustomBuilder implements ToolingModelBuilder {
                        boolean canBuild(String modelName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            });
        }
    
        private VersionNumber findIdeaTargetVersion() {
            VersionNumber targetVersion = null;
            String targetVersionString = rootProject.getExtensions().getByType(IdeaModel.class).getTargetVersion();
            if (targetVersionString != null) {
                targetVersion = VersionNumber.parse(targetVersionString);
                if (targetVersion.equals(VersionNumber.UNKNOWN)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            def result = loadToolingLeanModel(modelClass, cl)
            assertHasConfigureSuccessfulLogging()
            validateOutput()
            return result
        }
    
        protected GradleVersion getTargetVersion() {
            GradleVersion.version(targetDist.version.baseVersion.version)
        }
    
        protected static String mavenCentralRepository() {
            RepoScriptBlockUtil.mavenCentralRepository()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            toolingApi.requireDaemons()
            testCode()
        }
    
        boolean supportsEfficientClassFiltering() {
            return getTargetVersion() >= GradleVersion.version('4.7')
        }
    
        void launchTests(Collection<TestOperationDescriptor> testsToLaunch) {
            launchTests { TestLauncher testLauncher ->
                testLauncher.withTests(testsToLaunch)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.idea.model.IdeaModel.getProject()> does not have raw return type assignable to org.gradle.api.provider.Property in (IdeaModel.java:0)
    Method <org.gradle.plugins.ide.idea.model.IdeaModel.getTargetVersion()> does not have raw return type assignable to org.gradle.api.provider.Property in (IdeaModel.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top