Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for GRADLE_USER_HOME (0.29 sec)

  1. 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)
  2. 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)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            this.testOutputDir = testOutputDir;
        }
    
        /**
         * The variables to be used for replacing absolute paths in the iml entries.
         * For example, you might add a {@code GRADLE_USER_HOME} variable to point to the Gradle user home dir.
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public Map<String, File> getPathVariables() {
            return pathVariables;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

             */
            ALL
        }
    
        /**
         * Specifies how the wrapper path should be interpreted.
         */
        public enum PathBase {
            PROJECT, GRADLE_USER_HOME
        }
    
        private Object scriptFile = WrapperDefaults.SCRIPT_PATH;
        private Object jarFile = WrapperDefaults.JAR_FILE_PATH;
        private String distributionPath = DEFAULT_DISTRIBUTION_PARENT_NAME;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top