Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 132 for milestones (0.17 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

    // tag::custom-status-scheme[]
    @CacheableRule
    abstract class CustomStatusRule implements ComponentMetadataRule {
        void execute(ComponentMetadataContext context) {
            context.details.statusScheme = ["nightly", "milestone", "rc", "release"]
            if (context.details.status == "integration") {
                context.details.status = "nightly"
            }
        }
    }
    
    dependencies {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (1)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                    }
                }
            """
    
            when:
            buildFile.text = """
                $commonBuildFile
    
                checkDeps.doLast {
                    assert status11 == 'milestone'
                    assert branch11 == 'test'
                }
            """
    
            and:
            repositoryInteractions {
                'org.utils:api' {
                    expectVersionListing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                    }
                    publications {
                        ivy(IvyPublication) {
                            from comp
                            descriptor {
                               status = 'milestone'
                            }
                        }
                    }
                }
            """
    
            when:
            succeeds 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  4. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

         *   - '@' and '#' are special values for matching target configurations. See <a href="http://ant.apache.org/ivy/history/latest-milestone/ivyfile/dependency.html">the Ivy docs</a> for details.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                }
            }
        }
    
        private Stage parseStage(Matcher matcher) {
            if (matcher.group(4) == null || isCommitVersion(matcher)) {
                return null;
            } else if (isStage("milestone", matcher)) {
                return Stage.from(STAGE_MILESTONE, matcher.group(6));
            } else if (isStage("preview", matcher)) {
                return Stage.from(STAGE_PREVIEW, matcher.group(6));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    }
    
    dependencies {
    	implementation "some:lib:1.0"
    }
            """
        }
    
        @Test
        @Issue("GRADLE-1706") // doesn't prove that the issue is fixed because the test also passes with 1.0-milestone-4
        @ToBeFixedForConfigurationCache
        void canHandleDependencyWithoutSourceJarInMavenRepo() {
            mavenRepo.module("some", "lib", "1.0").publish()
    
            runEclipseTask """
    apply plugin: "java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. settings.gradle.kts

            maven {
                url = uri("https://repo.gradle.org/gradle/enterprise-libs-release-candidates")
                content {
                    val rcAndMilestonesPattern = "\\d{1,2}?\\.\\d{1,2}?(\\.\\d{1,2}?)?-((rc-\\d{1,2}?)|(milestone-\\d{1,2}?))"
                    // GE plugin marker artifact
                    includeVersionByRegex("com.gradle.develocity", "com.gradle.develocity.gradle.plugin", rcAndMilestonesPattern)
                    // GE plugin jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

    ### SIG Network
    
    The main milestones for SIG Network this release are the graduation of IPVS-based load balancing and CoreDNS to general availability.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. subprojects/distributions-dependencies/build.gradle.kts

    val jacksonVersion = "2.16.1"
    val jaxbVersion = "3.0.0"
    val junit5Version = "5.8.2"
    val mavenVersion = "3.9.5"
    val mavenResolverVersion = "1.9.16" // Should remain in-sync with `mavenVersion`
    val nativePlatformVersion = "0.22-milestone-26"
    val slf4jVersion = "1.7.36"
    val spockVersion = if (isBundleGroovy4) "2.3-groovy-4.0" else "2.3-groovy-3.0"
    val tomljVersion = "1.0.0"
    
    // test only
    val archunitVersion = "1.2.0"
    val bytebuddyVersion = "1.10.20"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top