Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for getElasticsearch (0.1 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaPlugin.java

                manifestPlugin.add("Change", toStringable(BuildParams::getGitRevision));
                manifestPlugin.add("X-Compile-Elasticsearch-Version", toStringable(VersionProperties::getElasticsearch));
                manifestPlugin.add("X-Compile-Lucene-Version", toStringable(VersionProperties::getLucene));
                manifestPlugin.add(
                    "X-Compile-Elasticsearch-Snapshot",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 7.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

                "testdistro",
                null,
                ElasticsearchDistributionTypes.ARCHIVE,
                Platform.LINUX,
                true
            );
            assertEquals(distro.getVersion(), VersionProperties.getElasticsearch());
        }
    
        public void testBadVersionFormat() {
            assertDistroError(
                createProject(null),
                "testdistro",
                "badversion",
    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/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

    unknown license content line 2
            """
            buildFile << """
                tasks.withType(AbstractArchiveTask).configureEach {
                    into("elasticsearch-${VersionProperties.getElasticsearch()}") {
                        from 'LICENSE.txt'
                        from 'SomeFile.txt'
                    }
                }
            """
    
    
    
            when:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPlugin.java

                        final Path noticePath = checkExtraction.get()
                            .getDestinationDir()
                            .toPath()
                            .resolve("elasticsearch-" + VersionProperties.getElasticsearch() + "/modules/x-pack-ml/NOTICE.txt");
                        final List<String> actualLines;
                        try {
                            actualLines = Files.readAllLines(noticePath);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

            if (needsGitTags(VersionProperties.getElasticsearch())) {
                findAndUpdateUpstreamRemote(gitWrapper);
            }
    
            LOGGER.info("Finding changelog files...");
    
            final Map<QualifiedVersion, Set<File>> filesByVersion = partitionFilesByVersion(
                gitWrapper,
                VersionProperties.getElasticsearch(),
                this.changelogs.getFiles()
            );
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseHighlightsGenerator.java

            try (FileWriter output = new FileWriter(outputFile)) {
                output.write(
                    generateFile(QualifiedVersion.of(VersionProperties.getElasticsearch()), Files.readString(templateFile.toPath()), entries)
                );
            }
        }
    
        @VisibleForTesting
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/BreakingChangesGenerator.java

            try (FileWriter output = new FileWriter(outputFile)) {
                output.write(
                    generateFile(QualifiedVersion.of(VersionProperties.getElasticsearch()), Files.readString(templateFile.toPath()), entries)
                );
            }
        }
    
        @VisibleForTesting
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3K bytes
    - Click Count (0)
  8. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

        def "resolves current version from local build"() {
            given:
            internalBuild()
            localDistroSetup()
            def distroVersion = VersionProperties.getElasticsearch()
            buildFile << """
                apply plugin: 'elasticsearch.internal-distribution-download'
    
                elasticsearch_distributions {
                  test_distro {
                      version = "$distroVersion"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionDownloadPlugin.java

            resolutions.register("localBuild", distributionResolution -> distributionResolution.setResolver((project, distribution) -> {
                if (VersionProperties.getElasticsearch().equals(distribution.getVersion())) {
                    // non-external project, so depend on local build
                    return new ProjectBasedDistributionDependency(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

                ));
            }
    
            for (Architecture architecture : Architecture.values()) {
                for (Platform platform : Arrays.asList(Platform.LINUX, Platform.WINDOWS)) {
                    currentDistros.add(
                        createDistro(distributions, architecture, ARCHIVE, platform, true, VersionProperties.getElasticsearch())
                    );
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
Back to Top