Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 942 for idea (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    == Step 5. Viewing Gradle files in an IDE
    Open the project in IntelliJ IDEA by double-clicking on the `settings.gradle.kts` file in the `tutorial` directory.
    For Groovy DSL users, you may need to select the IntelliJ IDEA app when you click on the `settings.gradle` file:
    
    image::tutorial/intellij-idea-ide.png[]
    
    Open the `settings.gradle(.kts)` and `build.gradle(.kts)` files in the IDE:
    
    image::tutorial/intellij-idea-open.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/IdeaProjectModelCrossVersionSpec.groovy

     */
    
    package org.gradle.plugins.ide.tooling.r33
    
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.model.idea.IdeaProject
    
    @TargetGradleVersion('>=3.3')
    class IdeaProjectModelCrossVersionSpec extends ToolingApiSpecification {
    
        def "Idea modules are returned in order"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/greeting-plugin/build.gradle

    plugins {
        id 'java-gradle-plugin'
        id 'idea'
    }
    
    group = 'org.sample'
    version = '1.0-SNAPSHOT'
    
    gradlePlugin {
        plugins {
            customPlugin {
                id = 'org.sample.greeting'
                implementationClass = 'org.sample.GreetingPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 273 bytes
    - Viewed (0)
  4. platforms/ide/ide/build.gradle.kts

        ignoreRawTypes()
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ide/internal/*")
        excludePatterns.add("org/gradle/plugins/ide/eclipse/internal/*")
        excludePatterns.add("org/gradle/plugins/ide/idea/internal/*")
        excludePatterns.add("org/gradle/plugins/ide/eclipse/model/internal/*")
        excludePatterns.add("org/gradle/plugins/ide/idea/model/internal/*")
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. .gitignore

    ._*
    
    # OSX trash
    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ide/idea/groovy/settings.gradle

    rootProject.name = 'idea'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26 bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/testing/internal/util/GradlewRunner.java

     * limitations under the License.
     */
    
    package org.gradle.testing.internal.util;
    
    import java.io.*;
    
    /**
     * This is used to launch Gradle from within IDEA. See gradle/idea.gradle.
     */
    public class GradlewRunner {
        public static void main(String[] args) {
            Process process = null;
    
            String[] combinedArgs;
            
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/addsScalaSdkAndCompilerLibraries/build.gradle

    allprojects {
        apply plugin: "idea"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 41 bytes
    - Viewed (0)
  9. platforms/ide/base-ide-plugins/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ide/idea/internal/**")
        excludePatterns.add("org/gradle/plugins/ide/idea/model/internal/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaDependencyScope.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.tooling.idea;
    
    import com.google.common.base.Objects;
    import org.gradle.tooling.model.idea.IdeaDependencyScope;
    
    import java.io.Serializable;
    
    public class DefaultIdeaDependencyScope implements IdeaDependencyScope, Serializable {
    
        String scope;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top