Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for releases (0.17 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

                includeGroup("com.android.databinding")
                includeGroupByRegex("com\\.android\\.tools(\\.[a-z.\\-]*)?")
            }
        }
        maven {
            name = "CHAMP libs"
            url = uri("https://releases.usethesource.io/maven/")
            mavenContent {
                includeGroup("io.usethesource")
            }
        }
        mavenCentral()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
            **/smoke-tests/build/reports/tests/** => post-smoke-tests
            **/build/version-info.properties => version-info.properties
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
        compatibilityDocFile = layout.projectDirectory.file("platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc")
    }
    
    tasks.register<UpdateKotlinVersions>("updateKotlinVersions") {
        comment = " Generated - Update by running `./gradlew updateKotlinVersions`"
        minimumSupported = "1.6.10"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Nov 29 10:17:36 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                    <p>
                    If change was made on the `release` branch but hasn't yet been merged to `master`, merge `release` to `master`:
                    <a class="btn btn-info" role="button" data-toggle="collapse" href="#merge-release-${changeId}" aria-expanded="false" aria-controls="collapseExample">Merge release to master</a>
                    <div class="collapse" id="merge-release-${changeId}">
                      <div class="well">
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  5. .teamcity/settings.kts

             |----- WarmupEc2Agent
             |----- AdHocPerformanceTest
    
    Release (buildTypeId: Gradle_Release)
     |----- Check (buildTypeId: Gradle_Release_Check)
     |        |---- QuickFeedbackLinux (buildTypeId: Gradle_Release_Check_QuickFeedbackLinux)
     |        |---- QuickFeedback
     |        |---- ...
     |        |---- ReadyForRelease
     |
     |----- Promotion (buildTypeId: Gradle_Release_Promotion)
     |        |----- Nightly Snapshot
     |        |----- ...
     |
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

            if (contributorsInPullRequestsButNotInReleaseNotes.isNotEmpty()) {
                throw IllegalStateException(
                    """The contributors in the release notes $releaseNotes don't match the contributors in the PRs.
                    Release notes:  $contributorsInReleaseNotes
                    Pull requests:  $contributorsFromPullRequests
                    Missed in notes:$contributorsInPullRequestsButNotInReleaseNotes
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

    import java.util.Collections;
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * Takes a rendered release notes HTML file and decorates it with extra elements/content/links.
     */
    @CacheableTask
    public abstract class DecorateReleaseNotes extends DefaultTask {
        /**
         * The rendered HTML release notes that need decoration.
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Sep 28 06:35:15 GMT 2021
    - 4.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
            "sanityCheck",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Nov 30 11:15:05 GMT 2021
    - 708 bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

    name: "Code scanning - action"
    
    on:
      push:
        branches: [ main, master, release ]
      schedule:
        - cron: '0 5 * * *'
    
    permissions:
      contents: read
    
    jobs:
      CodeQL-Build:
    
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 30 18:26:59 GMT 2024
    - 4K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

    import gradlebuild.basics.capitalize
    import com.google.gson.Gson
    import java.net.URL
    
    wrapperUpdateTask("nightly", "nightly")
    wrapperUpdateTask("rc", "release-candidate")
    wrapperUpdateTask("current", "current")
    
    tasks.withType<Wrapper>().configureEach {
        val jvmOpts = "-Dfile.encoding=UTF-8"
        inputs.property("jvmOpts", jvmOpts)
        doLast {
            val optsEnvVar = "DEFAULT_JVM_OPTS"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top