Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for buildEnvironment (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    NOTE: Given the personal and private nature of these values, a good practice is to store them in the `gradle.properties` file in the user's Gradle home directory (described in <<build_environment.adoc#sec:gradle_system_properties,System properties>>) instead of in the project directory itself.
    
    [source,properties]
    ----
    signing.keyId=24875D73
    signing.password=secret
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    * Task output property names
    * Individual task property input hashes
    * Hashes of files which are part of task input properties
    
    If you want information about the build cache key and individual input property hashes, use <<build_environment.adoc#sec:gradle_configuration_properties,`-Dorg.gradle.caching.debug=true`>>:
    
    [listing]
    ----
    $ ./gradlew :compileJava --build-cache -Dorg.gradle.caching.debug=true
    
    .
    .
    .
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/header.html

                        </ul>
                    </li>
                    <li><a href="../userguide/directory_layout.html">Gradle-managed Directories</a></li>
                    <li><a href="../userguide/build_environment.html">Configuring the Build Environment</a></li>
                    <li><a href="../userguide/logging.html">Logging with Gradle</a></li>
                </ul>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    w: build.gradle.kts:4:5: 'getter for uploadTaskName: String!' is deprecated. Deprecated in Java
    ----
    
    It is possible to configure your build to fail on any warning emitted during script compilation by <<build_environment#sec:gradle_configuration_properties,setting>> the `org.gradle.kotlin.dsl.allWarningsAsErrors` Gradle property to `true`:
    
    [source,properties]
    ----
    # gradle.properties
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    that allows you to declare only the type of required credentials. Credential values are looked up from the <<build_environment.adoc#sec:gradle_configuration_properties,Gradle Properties>>
    during the build that requires them.
    
    For example, given repository configuration:
    
    .Externalized repository credentials
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    * settings file in the root of the build
    * build file in the root of each subproject
    
    For the use case where custom settings or build files are used to model different behavior (similar to Maven profiles), consider using <<build_environment#sec:gradle_system_properties, system properties>> with conditional logic.
    For example, given a piece of code in either settings or build file:
    ```
    if (System.getProperty("profile") == "custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top