Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for buildCommand (0.33 sec)

  1. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/eclipse/model/customProject.xml

            <project>refProject</project>
        </projects>
        <buildSpec>
            <buildCommand>
                <name>org.eclipse.jdt.core.scalabuilder</name>
                <arguments>
                    <dictionary>
                        <key>climate</key>
                        <value>cold</value>
                    </dictionary>
                </arguments>
            </buildCommand>
        </buildSpec>
        <natures>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            setup:
            project.eclipse.project.buildCommands = [new BuildCommand('rootBuildCommand', ['rootKey': 'rootValue'])]
            child1.eclipse.project.buildCommands = [new BuildCommand('child1BuildCommand', ['child1Key': 'child1Value'])]
            child2.eclipse.project.buildCommands = [new BuildCommand('child2BuildCommand', ['child2Key': 'child2Value'])]
            def modelBuilder = createEclipseModelBuilder()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

        }
    
        /**
         * The build commands to be added to this Eclipse project.
         */
        public List<BuildCommand> getBuildCommands() {
            return buildCommands;
        }
    
        public void setBuildCommands(List<BuildCommand> buildCommands) {
            this.buildCommands = buildCommands;
        }
    
        /**
         * The linkedResources to be added to this Eclipse project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/groovyprojectProject.xml

    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.groovy.core.groovyNature</nature>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 399 bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

                includePath == "include1;include2"
                buildCommand == "GRADLE debugWin32Build"
            }
            with(configurations['releaseWin32']) {
                name == 'releaseWin32'
                platformName == 'Win32'
                macros == "foo;bar"
                includePath == "include1;include2;include3"
                buildCommand == "GRADLE releaseWin32Build"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

            assert eclipseProjectTask.outputFile == project.file('.project')
    
            assert project.eclipse.project.buildCommands == buildCommands
            assert project.eclipse.project.natures == natures
        }
    
        private void checkEclipseClasspath(def configurations, def additionalContainers = []) {
            def classpath = project.eclipse.classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/javabaseprojectProject.xml

    <projectDescription>
    	<name>javabaseproject</name>
    	<comment/>
    	<projects/>
    	<natures>
    		<nature>org.eclipse.jdt.core.javanature</nature>
    	</natures>
    	<buildSpec>
    		<buildCommand>
    			<name>org.eclipse.jdt.core.javabuilder</name>
    			<arguments/>
    		</buildCommand>
    	</buildSpec>
    	<linkedResources/>
    	<filteredResources/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 341 bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            exeProject.projectConfigurations.values().each {
                assert it.includePath == filePath("src/main/headers", "../lib/src/hello/headers")
                assert it.buildCommand.endsWith("gradle\" -p \"..\" :exe:installMain${it.name.capitalize()}Executable")
            }
    
            and:
            final dllProject = projectFile("lib/lib_helloDll.vcxproj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        referencedProjects = ['some referenced project'] as Set
        referencedProjects 'some cool project'
    
        natures = ['test.groovy.nature']
        natures 'test.java.nature'
    
        buildCommand 'buildThisLovelyProject'
        buildCommand argumentFoo: 'a foo argument', 'buildWithTheArguments'
    
        linkedResource name: 'linkToFolderFoo', type: 'aFolderFoo', location: '/test/folders/foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/NonRenamableProject.java

            delegate.setNatures(natures);
        }
    
        @Override
        public List<BuildCommand> getBuildCommands() {
            return delegate.getBuildCommands();
        }
    
        @Override
        public void setBuildCommands(List<BuildCommand> buildCommands) {
            delegate.setBuildCommands(buildCommands);
        }
    
        @Override
        public Set<Link> getLinkedResources() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top