Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for buildCommand (0.17 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                natures.add(new DefaultEclipseProjectNature(n));
            }
            eclipseProject.setProjectNatures(natures);
    
            List<DefaultEclipseBuildCommand> buildCommands = new ArrayList<>();
            for (BuildCommand b : xmlProject.getBuildCommands()) {
                Map<String, String> arguments = new LinkedHashMap<>();
                for (Map.Entry<String, String> entry : b.getArguments().entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry
    org.gradle.plugins.ide.eclipse.model.AbstractLibrary
    org.gradle.plugins.ide.eclipse.model.AccessRule
    org.gradle.plugins.ide.eclipse.model.BuildCommand
    org.gradle.plugins.ide.eclipse.model.Classpath
    org.gradle.plugins.ide.eclipse.model.EclipseClasspath
    org.gradle.plugins.ide.eclipse.model.EclipseJdt
    org.gradle.plugins.ide.eclipse.model.EclipseModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            projectFile.projectConfigurations.values().each {
                assert it.macros == "TEST;foo=bar"
                assert it.includePath == filePath("src/main/headers")
                assert it.buildCommand.endsWith("gradle\" :installMain${it.name.capitalize()}Executable")
                assert it.outputFile == OperatingSystem.current().getExecutableName("build/install/main/${it.outputDir}/lib/main")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            contexts.each {
                assert projectFile.projectConfigurations[it.asVariantName].includePath == filePath(expectedBaseIncludePaths)
                assert projectFile.projectConfigurations[it.asVariantName].buildCommand.endsWith("gradle\" :${getIdeBuildTaskName(it.asVariantName)}")
                assert projectFile.projectConfigurations[it.asVariantName].outputFile == getBuildFile(it)
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.BuildCommand.getArguments()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCommand.java:0)
    Method <org.gradle.plugins.ide.eclipse.model.BuildCommand.getName()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCommand.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)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.projectNatures = projectNatures;
        }
    
        public List<DefaultEclipseBuildCommand> getBuildCommands() {
            return buildCommands;
        }
    
        public void setBuildCommands(List<DefaultEclipseBuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        public DefaultEclipseJavaSourceSettings getJavaSourceSettings() {
            return javaSourceSettings;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

                "-PbuildCommitDistribution=true"
            )
    
            if (project.gradle.startParameter.isBuildCacheEnabled) {
                buildCommands.add("--build-cache")
            }
    
            return buildCommands.toTypedArray()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProjectTest.groovy

            project.projectNatures.isEmpty()
        }
    
        def emptyDefaultBuilderList() {
            def project = new DefaultEclipseProject("name", ":path", null, null, [])
    
            expect:
            project.buildCommands.isEmpty()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def buildCommandNames = rootProject.buildCommands.collect{ it.name }
    
            then:
            buildCommandNames == expectedBuildCommandNames
    
            where:
            plugins                 | expectedBuildCommandNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            }.run { builder ->
                def model = builder.get()
                // we must actually do something to highlight some performance issues
                forEachEclipseProject(model) {
                    buildCommands.each {
                        it.name
                        it.arguments
                    }
                    withGradleProject(gradleProject)
                    classpath.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top