Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for beforeMerged (0.56 sec)

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

     * For tackling edge cases, users can perform advanced configuration on the resulting XML file.
     * It is also possible to affect the way that the Eclipse plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * The beforeMerged and whenMerged closures receive a {@link Classpath} object.
     * <p>
     * Examples of advanced configuration:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

        project {
            file {
                beforeMerged {beforeConfiguredObjects++ }
                whenMerged {whenConfiguredObjects++ }
            }
        }
    
        classpath {
            file {
                beforeMerged {beforeConfiguredObjects++ }
                whenMerged {whenConfiguredObjects++ }
            }
        }
    
        wtp.component {
            file {
                beforeMerged {beforeConfiguredObjects++ }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    . The file is read; or a default version provided by Gradle is used if it does not exist
    . The `beforeMerged` hook is executed with a domain object representing the existing file
    . The existing content is merged with the configuration inferred from the Gradle build or defined explicitly in the eclipse DSL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

            runEclipseTask """
    apply plugin: 'java'
    apply plugin: 'war'
    apply plugin: 'eclipse-wtp'
    
    def hooks = []
    
    eclipse {
      wtp {
        component {
          file {
            beforeMerged {
              hooks << 'beforeMerged'
              assert it.deployName == 'coolDeployName'
            }
            whenMerged {
              hooks << 'whenMerged'
              it.deployName = 'betterDeployName'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.api.FileContentMerger.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>beforeMerged</td>
                </tr>
                <tr>
                    <td>whenMerged</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

     *
     * For tackling edge cases users can perform advanced configuration on resulting XML file.
     * It is also possible to affect the way eclipse plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * beforeMerged and whenMerged closures receive {@link Project} object
     * <p>
     * Examples of advanced configuration:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

        }
    
        /**
         * Enables advanced configuration like affecting the way existing jdt file content
         * is merged with gradle build information
         * <p>
         * The object passed to whenMerged{} and beforeMerged{} closures is of type {@link Jdt}
         * <p>
         * The object passed to withProperties{} closures is of type {@link java.util.Properties}
         * <p>
         * For example see docs for {@link EclipseJdt}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

     *
     * For tackling edge cases users can perform advanced configuration on resulting XML file.
     * It is also possible to affect the way eclipse plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * beforeMerged and whenMerged closures receive {@link WtpComponent} object
     * <p>
     * Examples of advanced configuration:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'war'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

     * </pre>
     *
     * For tackling edge cases users can perform advanced configuration on resulting XML file.
     * It is also possible to affect the way IDEA plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * beforeMerged and whenMerged closures receive {@link Project} object
     * <p>
     * Examples of advanced configuration:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

     1. The file is read; or a default version provided by Gradle is used if it does not exist
     2. The `beforeMerged` hook is executed with a domain object representing the existing file
     3. The existing content is merged with the configuration inferred from the Gradle build or defined explicitly in the eclipse DSL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top