Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for GRADLE_USER_HOME (0.3 sec)

  1. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240529002035+0000-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 280 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    image::author-gradle-2.png[]
    
    [[gradle_user_home]]
    == Gradle User Home directory
    
    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`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            File gradleUserHomeDir = file('customUserHome')
    
            then:
            executer
                .withOwnUserHomeServices()
                .withGradleUserHomeDir(null)
                .withEnvironmentVars('GRADLE_USER_HOME': gradleUserHomeDir.absolutePath)
                .withTasks("checkGradleUserHomeViaSystemEnv")
                .run()
        }
    
        @Requires([UnitTestPreconditions.NotEC2Agent, IntegTestPreconditions.NotEmbeddedExecutor])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            Wrapper.DEFAULT_DISTRIBUTION_PARENT_NAME == wrapper.getDistributionPath()
            Wrapper.DEFAULT_DISTRIBUTION_PARENT_NAME == wrapper.getArchivePath()
            Wrapper.PathBase.GRADLE_USER_HOME == wrapper.getDistributionBase()
            Wrapper.PathBase.GRADLE_USER_HOME == wrapper.getArchiveBase()
            wrapper.getDistributionUrl() != null
            wrapper.getDistributionSha256Sum() == null
            !wrapper.getNetworkTimeout().isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    2. *Put a file called `init.gradle(.kts)`* in the `__$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>__/` directory.
    3. *Put a file called `init.gradle(.kts)`* in the `__$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>__/init.d/` directory.
    4. *Put a file called `init.gradle(.kts)`* in the `$<<installation.adoc#sec:linux_macos_users_2,__GRADLE_HOME__>>/init.d/` directory.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ForkingGradleHandle.java

            println(format("    JAVA_HOME: %s", environment.get("JAVA_HOME")));
            println(format("    GRADLE_HOME: %s", environment.get("GRADLE_HOME")));
            println(format("    GRADLE_USER_HOME: %s", environment.get("GRADLE_USER_HOME")));
            println(format("    JAVA_OPTS: %s", environment.get("JAVA_OPTS")));
            println(format("    GRADLE_OPTS: %s", environment.get("GRADLE_OPTS")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

    import java.io.File;
    import java.math.BigInteger;
    import java.net.URI;
    import java.security.MessageDigest;
    
    public class PathAssembler {
        public static final String GRADLE_USER_HOME_STRING = "GRADLE_USER_HOME";
        public static final String PROJECT_STRING = "PROJECT";
    
        private final File gradleUserHome;
        private final File projectDirectory;
    
        public PathAssembler(File gradleUserHome, File projectDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    Inside the root project directory are one or more subprojects, build scripts, and the Gradle wrapper.
    
    While the Gradle Wrapper is local to the root project, the Gradle executable is found in the `GRADLE_USER_HOME`.
    
    The `GRADLE_USER_HOME`, which defaults to `USER_HOME/.gradle`, is also where Gradle stores its global configuration properties, initialization scripts, caches, log files and more.
    
    == Step 3. Review the Gradle Files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top