Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 519 for idea (0.16 sec)

  1. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.idea.model.IdeaModuleIml
    org.gradle.plugins.ide.idea.model.IdeaProject
    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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea
    
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[gradle_ides]]
    = Gradle in IDEs
    
    Many IDEs support Gradle including Android Studio, IntelliJ IDEA, Visual Studio Code, Eclipse, and NetBeans.
    
    == IntelliJ IDEA
    
    IntelliJ IDEA supports a fully-functional integration with Gradle that helps you automate your building process.
    
    image::intellij_idea.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea
    
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.plugins.ide.fixtures.IdeaFixtures.parseIml
    import static org.gradle.plugins.ide.fixtures.IdeaFixtures.parseIpr
    
    class IdeaCompositeBuildIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaProject.java

        /**
         * Returns the modules of this IDEA project. Most projects have at least one module.
         * Alias for {@link #getModules()}.
         *
         * @return The modules of this IDEA project.
         * @since 1.0-milestone-5
         */
        @Override
        DomainObjectSet<? extends IdeaModule> getChildren();
    
        /**
         * Returns the modules of this IDEA project. Most projects have at least one module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/resources/META-INF/analysis-api/analysis-api-fir.xml

        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.idea.references.KotlinReferenceProviderContributor"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.fir.references.KotlinFirReferenceContributor"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.idea.references.ReadWriteAccessChecker"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

                it instanceof IdeaModuleDependency
                targetModuleName == "b1"
            }
        }
    
        def "Idea model honours custom module name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'idea'
                    idea {
                        module.name = module.name + "-renamed"
                    }
                }
                project(":b1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaWorkspace.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.IdeaWorkspace;
    import org.gradle.plugins.ide.idea.model.Workspace;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top