Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GRADLE_USER_HOME (0.41 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |===
    |Priority |Method |Location |Details
    
    |1
    |Command line interface
    |.
    |In the command line using `-D`.
    
    |2
    |`gradle.properties` file
    |`GRADLE_USER_HOME`
    |Stored in a `gradle.properties` file in the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`.
    
    |3
    |`gradle.properties` file
    |Project Root Dir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    To enable the Daemon by default in older Gradle versions, add the following setting to the `gradle.properties` file in the project root or your Gradle User Home (`GRADLE_USER_HOME`:
    
    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.daemon=true
    ----
    ====
    
    [[sec:disabling_the_daemon]]
    == Disable Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    A typical project setup places the `gradle.properties` file in the root directory of the build.
    Alternatively, the file can also live in the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>` directory if you want it to apply to all builds on your machine.
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── gradle.properties
    └── settings.gradle.kts
    ├── subproject-a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    By default, the Gradle User Home (`~/.gradle` or `C:\Users\<USERNAME>\.gradle`) stores global configuration properties, initialization scripts, caches, and log files.
    
    It can be set with the environment variable `GRADLE_USER_HOME`.
    
    TIP: Not to be confused with the `GRADLE_HOME`, the optional installation directory for Gradle.
    
    It is roughly structured as follows:
    
    [listing]
    ----
    ├── caches // <1>
    │   ├── 4.8 // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top