Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for elasticLicenseUrl (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/LicensingPlugin.java

                    licenseCommit + ELASTIC_LICENSE_URL_POSTFIX);
            // But stick the Elastic license url in project.ext so we can get it if we need to switch to it
            project.getExtensions().getExtraProperties().set("elasticLicenseUrl", projectLicenseURL);
    
            MapProperty<String, String> convention = licensesProperty.convention(
                    providerFactory.provider((Callable<Map<? extends String, ? extends String>>) () -> Map.of(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPlugin.java

                project.getExtensions()
                    .add(
                        "projectLicenses",
                        Map.of("Elastic License 2.0", project.getExtensions().getExtraProperties().get("elasticLicenseUrl"))
                    );
                TaskProvider<Task> checkMlCppNoticeTask = registerCheckMlCppNoticeTask(
                    project,
                    checkExtraction,
                    distributionArchiveCheckExtension
    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)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

            }
            file("SomeFile.txt") << """
                some dummy txt file
            """
    
            buildFile << """
                allprojects {
                    apply plugin:'base'
                    ext.elasticLicenseUrl = "http://foo.bar"
                }
                tasks.register("buildDarwinTar", Tar) {
                    compression = Compression.GZIP
                    from 'SomeFile.class'
                }
    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)
Back to Top