Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for buildCommand (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * @param buildCommand The name of the build command.
         * @see #buildCommand(String)
         */
        public void buildCommand(Map<String, String> args, String buildCommand) {
            assert buildCommand != null;
            buildCommands.add(new BuildCommand(buildCommand, args));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.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-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)
  5. 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)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            projectFile.projectConfigurations.values().each {
                assert it.macros == "TEST;foo=bar"
                assert it.includePath == filePath("src/main/headers")
                assert it.buildCommand.endsWith("gradle\" :install${it.name.capitalize()}")
                assert it.outputFile == OperatingSystem.current().getExecutableName("build/install/main/${it.name.toLowerCase()}/lib/app")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                        @Override
                        public boolean apply(BuildCommand buildCommand) {
                            return buildCommand.getName().equals("org.eclipse.jdt.core.javabuilder");
                        }
    
                    }), new BuildCommand("org.scala-ide.sdt.core.scalabuilder"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            exeProject.projectConfigurations.values().each {
                assert it.includePath == filePath("src/main/headers", "../lib/src/main/public")
                assert it.buildCommand.endsWith("gradle\" -p \"..\" :exe:install${it.name.capitalize()}")
            }
    
            and:
            final dllProject = projectFile("lib/libDll.vcxproj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

            Action<Object> action = new Action<Object>() {
                @Override
                public void execute(Object ignored) {
                    model.getProject().buildCommand("org.eclipse.wst.common.project.facet.core.builder");
                    model.getProject().buildCommand("org.eclipse.wst.validation.validationbuilder");
                    model.getProject().natures("org.eclipse.wst.common.project.facet.core.nature");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. 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)
Back to top