Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for idea (0.11 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void dslSupportsShortFormsForModule() {
            runTask('idea', """
    apply plugin: 'idea'
    
    idea.module.name = 'X'
    assert idea.module.name == 'X'
    
    idea {
        module.name += 'X'
        assert module.name == 'XX'
    }
    
    idea.module {
        name += 'X'
        assert name == 'XXX'
    }
    
    """)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     * It is also possible to affect the way the IDEA plugin merges the existing configuration
     * via beforeMerged and whenMerged closures.
     * <p>
     * beforeMerged and whenMerged closures receive a {@link Module} parameter
     * <p>
     * Examples of advanced configuration:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   module {
     *     iml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

    import org.gradle.api.JavaVersion
    import org.gradle.plugins.ide.internal.tooling.idea.IsolatedIdeaModuleInternal
    import org.gradle.plugins.ide.internal.tooling.model.IsolatedGradleProjectInternal
    import org.gradle.tooling.model.idea.BasicIdeaProject
    import org.gradle.tooling.model.idea.IdeaContentRoot
    import org.gradle.tooling.model.idea.IdeaDependency
    import org.gradle.tooling.model.idea.IdeaJavaLanguageSettings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

    import org.gradle.internal.Cast;
    import org.gradle.plugins.ide.idea.IdeaPlugin;
    import org.gradle.plugins.ide.idea.model.Dependency;
    import org.gradle.plugins.ide.idea.model.FilePath;
    import org.gradle.plugins.ide.idea.model.IdeaModel;
    import org.gradle.plugins.ide.idea.model.IdeaModule;
    import org.gradle.plugins.ide.idea.model.ModuleLibrary;
    import org.gradle.plugins.ide.idea.model.ProjectLibrary;
    import org.gradle.util.internal.VersionNumber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    [[sec:troubleshooting_ide_integration]]
    == Debugging IDE integration
    
    Many infrequent errors within IDEs can be solved by "refreshing" Gradle.
    See also more documentation on working with Gradle link:https://www.jetbrains.com/help/idea/gradle.html[in IntelliJ IDEA] and link:http://www.vogella.com/tutorials/EclipseGradle/article.html[in Eclipse].
    
    === Refreshing IntelliJ IDEA
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    == Step 5. Viewing Gradle files in an IDE
    Open the project in IntelliJ IDEA by double-clicking on the `settings.gradle.kts` file in the `tutorial` directory.
    For Groovy DSL users, you may need to select the IntelliJ IDEA app when you click on the `settings.gradle` file:
    
    image::tutorial/intellij-idea-ide.png[]
    
    Open the `settings.gradle(.kts)` and `build.gradle(.kts)` files in the IDE:
    
    image::tutorial/intellij-idea-open.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/dsl.xml

                <tr>
                    <td>org.gradle.plugins.ide.eclipse.model.EclipseWtpFacet</td>
                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.idea.model.IdeaModel</td>
                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.idea.model.IdeaProject</td>
                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.idea.model.IdeaModule</td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.plugins.ide.idea.IdeaPlugin> extends/implements org.gradle.plugins.ide.internal.IdePlugin that is Gradle Internal API in (IdeaPlugin.java:0)
    Class <org.gradle.plugins.ide.idea.model.Module> extends/implements org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject that is Gradle Internal API in (Module.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

        }
    
        /**
         * This is a workaround to preserve backward compatibility with IntelliJ IDEA.
         * The problem only occurs in IntelliJ IDEA because it parses {@link OperationDescriptor#getDisplayName()} to get the test display name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

    ```
    
    ## 1.5 A note on IDEs
    
    ### 1.5.1 IntelliJ IDEA
    
    IntelliJ IDEA will display `<p>` or an empty `*` as a new line:
    
    ```java
    /**
     * A
     *
     * B
     ```
    
    ```java
    /**
     * A
     * <p>
     * B
     ```
    
    Render as:
    
    ```text
    A
    B
    ```
    
    If you want to stop IntelliJ IDEA from auto closing HTML tags:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top