Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 687 for Idea (0.04 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/scala/ideaTargetVersion/groovy/build.gradle

    plugins {
        id 'scala'
        id 'idea'
    }
    
    // tag::scala-idea-target-version[]
    idea {
        targetVersion = '13'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea;
    
    import org.gradle.api.tasks.Internal;
    import org.gradle.internal.xml.XmlTransformer;
    import org.gradle.plugins.ide.api.XmlGeneratorTask;
    import org.gradle.plugins.ide.idea.model.IdeaModule;
    import org.gradle.plugins.ide.idea.model.Module;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

    // tag::use-plugin[]
    plugins {
        id 'idea'
    }
    // end::use-plugin[]
    
    // tag::module-before-merged[]
    idea.module.iml {
        beforeMerged { module ->
            module.dependencies.clear()
        }
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    idea.project.ipr {
        beforeMerged { project ->
            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (1)
  5. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.idea.model.IdeaWorkspace
    org.gradle.plugins.ide.idea.model.JarDirectory
    org.gradle.plugins.ide.idea.model.Jdk
    org.gradle.plugins.ide.idea.model.Module
    org.gradle.plugins.ide.idea.model.ModuleDependency
    org.gradle.plugins.ide.idea.model.ModuleLibrary
    org.gradle.plugins.ide.idea.model.Path
    org.gradle.plugins.ide.idea.model.PathFactory
    org.gradle.plugins.ide.idea.model.Project
    org.gradle.plugins.ide.idea.model.ProjectLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

            //couldn't find a better way of asserting on before/when configured hooks
            runIdeaTask '''
    apply plugin: 'java'
    apply plugin: 'idea'
    
    def beforeConfiguredObjects = 0
    def whenConfiguredObjects = 0
    
    idea {
        project {
            ipr {
                beforeMerged {beforeConfiguredObjects++ }
                whenMerged {whenConfiguredObjects++ }
            }
        }
        workspace {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

            def result = runTask ':idea', 'include "someProjectThatWillBeExcluded", "api"', '''
    allprojects {
        apply plugin: "java"
        apply plugin: "idea"
    }
    
    idea {
        project {
            jdkName = '1.3'
            wildcards += '!?*.ruby'
    
            //let's remove one of the subprojects from generation:
            modules -= project(':someProjectThatWillBeExcluded').idea.module
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        void "external dependency substituted with project dependency"() {
            createDirs("project1", "project2")
            runTask("idea", "include 'project1', 'project2'", """
    allprojects {
        apply plugin: "java"
        apply plugin: "idea"
    }
    
    project(":project2") {
        dependencies {
            implementation group: "junit", name: "junit", version: "4.7"
        }
    
        configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

                    apply plugin: 'java'
                    apply plugin: 'idea'
                    group = 'test'
                    version = '1.3'
                """
            }
            singleProjectBuild("other") {
                settingsFile << "rootProject.name = '${rootProjectName}'"
                buildFile << """
                    apply plugin: 'java'
                    apply plugin: 'idea'
                """
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top