Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 942 for idea (0.22 sec)

  1. .gitignore

    !**/test/**/build
    *.iml
    !**/testData/**/*.iml
    .idea/artifacts
    .idea/remote-targets.xml
    .idea/libraries/Gradle*.xml
    .idea/libraries/Maven*.xml
    .idea/modules
    .idea/runConfigurations/JPS_*.xml
    .idea/runConfigurations/_JPS_*.xml
    .idea/runConfigurations/PILL_*.xml
    .idea/runConfigurations/_FP_*.xml
    .idea/runConfigurations/_MT_*.xml
    .idea/libraries
    .idea/modules.xml
    .idea/gradle.xml
    .idea/compiler.xml
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 21 15:38:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    [[idea-configuration]]
    
    `idea` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.model.IdeaModel.html[IdeaModel]::
    Top level element that enables configuration of the idea plugin in a DSL-friendly fashion
    
    `idea.project` link:{groovyDslPath}/org.gradle.plugins.ide.idea.model.IdeaProject.html[IdeaProject]::
    Allows configuring project information
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. 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)
  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. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    limitations under the License."""
    }
    
    tasks.idea {
        doFirst { throw RuntimeException("To import in IntelliJ, please follow the instructions here: https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md#intellij") }
    }
    
    if (idea.project != null) { // may be null during script compilation
        idea {
            module {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 26 15:42:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

    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
    
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def shouldCheckForDeprecationWarnings(){
            false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top