Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for whenMerged (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            setup:
            buildFile.text = """
                apply plugin: 'eclipse'
                eclipse {
                    project {
                        file {
                            whenMerged {
                                ${server.callFromBuild("waiting")}
                            }
                        }
                    }
                }
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

                    it.buildCommands = [new BuildCommand('buildCommandBefore', [:])]
                    it.linkedResources += new Link('linkToDelete2', '2', null, '../some-directory')
                }
                file.whenMerged {
                    it.natures += 'nature.c'
                    it.buildCommands << new BuildCommand('buildCommandAfter', [:])
                    it.linkedResources = [new Link('linkAfter', '2', null, '../some-directory')]
    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-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                            plusConfigurations.addAll(component.getLibConfigurations());
                        }
                    });
    
                    model.getClasspath().getFile().whenMerged(new Action<Classpath>() {
                        @Override
                        public void execute(Classpath classpath) {
                            new WtpClasspathAttributeSupport(project, model).enhance(classpath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    apply plugin: "idea"
    
    idea {
        module {
            excludeDirs = [project.file('folderThatIsExcludedNow')] as Set
            iml {
                beforeMerged { it.excludeFolders.clear() }
                whenMerged   { it.jdkName = '1.33'   }
            }
        }
    }
    ''')
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('folderThatIsExcludedNow')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

            testConfigurations = [configuration.myTestConfiguration]
        }
    }
    ```
    
    Alternatively, you can adjust or remove classpath attributes in the `eclipse.classpath.file.whenMerged { }` block.
    
    ==== Signing plugin defaults to `gpg` instead of `gpg2` when using the GPG command
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.api.FileContentMerger.whenMerged(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (FileContentMerger.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top