Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 687 for Idea (0.04 sec)

  1. 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)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "generated IDEA metadata respects idea plugin configuration"() {
            given:
            dependency 'org.test:b1:1.0'
            dependency 'org.test:b2:1.0'
    
            buildB.buildFile << """
                project(':b1') {
                    idea.module.name = 'b1-renamed'
                }
    """
    
            when:
            idea()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. .idea/scopes/IDE.xml

      <scope name="IDE" pattern="file[idea_main]:*/||file[idea]:testData/*/||file[idea-formatter_main]:*/||file[ide-common_main]:*/||file[idea-android_main]:*/||file[idea-android-output-parser_main]:*/||file[idea]:idea-completion/testData/*/||file[idea-core_main]:*/||file[idea-gradle_main]:*/||file[idea-jps-common_main]:*/||file[idea-jvm_main]:*/||file[idea]:idea-live-templates/src/*/||file[idea]:idea-live-templates/testData/*/||file[idea-maven_main]:*/||file[idea-repl]:*/||file[idea-test-framew...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 16:22:04 UTC 2017
    - 609 bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

        }
    
        def "adds extension to root project"() {
            when:
            applyPluginToProjects()
    
            then:
            project.idea instanceof IdeaModel
            project.idea.project != null
            project.idea.project.location.get().asFile == project.file("test-project.ipr")
            project.idea.module.outputFile == project.file("test-project.iml")
        }
    
        def "adds extension to child project"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

    // tag::module-before-merged[]
    // tag::module-when-merged[]
    import org.gradle.plugins.ide.idea.model.Module
    // end::module-when-merged[]
    // end::module-before-merged[]
    
    // tag::module-when-merged[]
    import org.gradle.plugins.ide.idea.model.ModuleDependency
    // end::module-when-merged[]
    
    // tag::project-before-merged[]
    import org.gradle.plugins.ide.idea.model.Project
    // end::project-before-merged[]
    
    // tag::project-with-xml[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

                customModuleContentRoot {}
                src { main { java {} } }
            }
    
            //when
            runTask 'idea', '''
    apply plugin: "java"
    apply plugin: "idea"
    
    configurations {
      provided
      compileClasspath.extendsFrom(provided)
    }
    
    idea {
        pathVariables CUSTOM_VARIABLE: file('customModuleContentRoot').parentFile
    
        module {
            name = 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.test.fixtures.maven.MavenFileRepository
    import org.gradle.tooling.model.idea.BasicIdeaProject
    import org.gradle.tooling.model.idea.IdeaContentRoot
    import org.gradle.tooling.model.idea.IdeaModule
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    import org.gradle.tooling.model.idea.IdeaProject
    import org.gradle.tooling.model.idea.IdeaSingleEntryLibraryDependency
    import org.gradle.util.GradleVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

            def location = project.idea.project.location
    
            then:
            project.idea.project.outputFile == project.file("test-project.ipr")
            location.get().asFile == project.idea.project.outputFile
    
            when:
            project.idea.project.outputFile = project.file("other.ipr")
    
            then:
            location.get().asFile == project.idea.project.outputFile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                allprojects {
                    apply plugin: 'java'
                    apply plugin: 'idea'
                }
    
                project(':contrib') {
                    idea.module {
                        name = 'cool-contrib'
                    }
                }
            """
    
            executer.withTasks("idea").run()
            assert getFile(project: 'shared/api', "shared-api.iml").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top