Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getLicensesDir (0.31 seconds)

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

        }
    
        public void setCompileOnlyConfiguration(Configuration compileOnlyConfiguration) {
            this.compileOnlyConfiguration = compileOnlyConfiguration;
        }
    
        public File getLicensesDir() {
            return licensesDir;
        }
    
        public void setLicensesDir(File licensesDir) {
            this.licensesDir = licensesDir;
        }
    
        public File getOutputFile() {
            return outputFile;
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java

        private TaskProvider<DependencyLicensesTask> parentTask;
    
        public UpdateShasTask() {
            setDescription("Updates the sha files for the dependencyLicenses check");
            setOnlyIf(element -> parentTask.get().getLicensesDir() != null);
        }
    
        @TaskAction
        public void updateShas() throws NoSuchAlgorithmException, IOException {
            Set<File> shaFiles = parentTask.get().getShaFiles();
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
Back to Top