Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for bwcMinor (0.04 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

            Configuration bwcMinorConfig = project.getConfigurations().create(BWC_MINOR_CONFIG_NAME);
            Dependency bwcMinor = project.getDependencies().project(Map.of("path", ":distribution:bwc:minor", "configuration", "checkout"));
            project.getDependencies().add(bwcMinorConfig.getName(), bwcMinor);
    
            Provider<CopyRestApiTask> copyCompatYamlSpecTask = project.getTasks()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 11.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

                true,
                "bundledJdk cannot be set on elasticsearch distribution [testdistro]"
            );
        }
    
        public void testLocalCurrentVersionIntegTestZip() {
            Project project = createProject(BWC_MINOR);
            Project archiveProject = ProjectBuilder.builder().withParent(archivesProject).withName("integ-test-zip").build();
            archiveProject.getConfigurations().create("default");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/test/java/org/elasticsearch/gradle/AbstractDistributionDownloadPluginTests.java

        protected static final Version BWC_BUGFIX_VERSION = Version.fromString("1.0.1");
        protected static final Version BWC_MAINTENANCE_VERSION = Version.fromString("0.90.1");
    
        protected static final BwcVersions BWC_MINOR = new BwcVersions(
            new TreeSet<>(Arrays.asList(BWC_BUGFIX_VERSION, BWC_MINOR_VERSION, BWC_MAJOR_VERSION)),
            BWC_MAJOR_VERSION
        );
        protected static final BwcVersions BWC_STAGED = new BwcVersions(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 4.7K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

            result.task(transformTask).outcome == TaskOutcome.NO_SOURCE
        }
    
        def "yamlRestTestVxCompatTest executes and copies api and transforms tests from :bwc:minor"() {
            given:
            internalBuild()
    
            addSubProject(":distribution:bwc:minor") << """
            configurations { checkout }
            artifacts {
                checkout(new File(projectDir, "checkoutDir"))
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
Back to Top