Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 135 for IDEs (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    [[third_party_integration]]
    = Gradle & Third-party Tools
    
    Gradle can be integrated with many different third-party tools such as IDEs and continuous integration platforms. Here we look at some of the more common ones as well as how to integrate your own tool with Gradle.
    
    [[ides]]
    == IDEs
    
    Android Studio::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins and model builders for integration with Eclipse and IntelliJ IDEs"
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 1 occurrences
            "LoopOverCharArray", // 1 occurrences
            "ObjectEqualsForPrimitives", // 3 occurrences
            "StringCaseLocaleUsage", // 2 occurrences
        )
    }
    
    dependencies {
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. .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
    *~
    \#*\#
    .\#*
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/RemoteRepositorySpec.groovy

                module(aid) {
                    version(v, spec)
                }
            }
        }
    
        /**
         * Use {@link #id} when possible since it doesn't rely on {@code methodMissing} and integrates better with IDEs.
         */
        void methodMissing(String name, args) {
            def (gid, aid, v) = name.split(':') as List
            Closure spec = {}
            if (args && args.length == 1 && args[0] instanceof Closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/AbstractIdeaSyncTest.groovy

    import java.nio.file.Files
    import java.nio.file.Path
    import java.nio.file.Paths
    
    /**
     * Tests that runs a project import to IDEA, with an provisioning of the desired version.
     *
     * Provisioned IDEs are cached in the {@link AbstractIdeaSyncTest#getIdeHome} directory.
     */
    @Timeout(600)
    @CleanupTestDirectory
    abstract class AbstractIdeaSyncTest extends Specification {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:28:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    <6> Source code and/or additional files for the projects
    
    == Invoking Gradle
    
    === IDE
    
    Gradle is <<gradle_ides.adoc#gradle_ides,built-in to many IDEs>> including Android Studio, IntelliJ IDEA, Visual Studio Code, Eclipse, and NetBeans.
    
    Gradle can be automatically invoked when you build, clean, or run your app in the IDE.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    [plugins]
    androidApplication = { id = "com.android.application", version.ref = "androidGradlePlugin" }
    ----
    
    The file is located in the `gradle` directory so that it can be used by Gradle and IDEs automatically.
    The version catalog should be checked into source control: `gradle/libs.versions.toml`.
    
    == Declaring Your Dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. architecture/standards/0004-use-a-platform-architecture.md

    #### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    #### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    #### Build infrastructure
    
    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    #### Documentation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

    // TODO unfortunately the plugins need to be downloaded in order to get the plugin.xml file. need to externalize this
    //      from the plugin archive.
    // TODO this will be the class that people get in IDEs to modify
    
    /**
     * MavenExecutionPlan
     */
    public class MavenExecutionPlan implements Iterable<ExecutionPlanItem> {
    
        /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. architecture/platforms.md

    ### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    ### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    ### Build infrastructure
    
    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    ### Documentation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top