Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setLicensesDir (0.14 seconds)

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

            this.compileOnlyConfiguration = compileOnlyConfiguration;
        }
    
        public File getLicensesDir() {
            return licensesDir;
        }
    
        public void setLicensesDir(File licensesDir) {
            this.licensesDir = licensesDir;
        }
    
        public File getOutputFile() {
            return outputFile;
        }
    
        public void setOutputFile(File 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/DependencyLicensesTask.java

        @Optional
        @InputDirectory
        public File getLicensesDir() {
            if (licensesDir.exists()) {
                return licensesDir;
            }
    
            return null;
        }
    
        public void setLicensesDir(File licensesDir) {
            this.licensesDir = licensesDir;
        }
    
        /**
         * Add a rule which will skip SHA checking for the given dependency name. This should be used for
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
Back to Top