Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isSpdxLicense (0.08 seconds)

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

                this.sourceRedistributionRequired = sourceRedistributionRequired;
            }
    
            public String getIdentifier() {
                return identifier;
            }
    
            public boolean isSpdxLicense() {
                return spdxLicense;
            }
    
            public boolean isSourceRedistributionRequired() {
                return sourceRedistributionRequired;
            }
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 27 00:12:58 GMT 2021
    - 12.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesInfoTask.java

            final File license = getDependencyInfoFile(group, name, "LICENSE");
            String licenseType;
    
            final LicenseAnalyzer.LicenseInfo licenseInfo = LicenseAnalyzer.licenseType(license);
            if (licenseInfo.isSpdxLicense() == false) {
                // License has not be identified as SPDX.
                // As we have the license file, we create a Custom entry with the URL to this license file.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.6K bytes
    - Click Count (0)
Back to Top