Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for openIdea (0.11 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            childProject.tasks.findByName('ideaProject') == null
            childProject.tasks.findByName('cleanIdeaProject') == null
        }
    
        def "adds 'openIdea' task to root project"() {
            when:
            applyPluginToProjects()
    
            then:
            project.tasks.openIdea != null
        }
    
        def "configures idea project"() {
            when:
            applyPluginToProjects()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    The IDEA plugin also adds an `openIdea` task when the project is the root project. This task generates the IDEA configuration files and opens the result in IDEA. This means you can simply run `./gradlew openIdea` from the root project to generate and open the IDEA project in one convenient step.
    
    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