Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for licenseHeaders (0.26 seconds)

  1. build-tools-internal/build.gradle

        runtimeClasspath += output + compileClasspath
      }
    }
    
    tasks.withType(JavaCompile).configureEach {
      options.encoding = 'UTF-8'
    }
    
    tasks.named('licenseHeaders').configure {
      // ignore gradle generated binary script plugins
      excludes << "Elasticsearch*Plugin.java"
    }
    /*****************************************************************************
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  2. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/LicenseHeadersTask.java

        }
    
        public void setExcludes(List<String> excludes) {
            this.excludes = excludes;
        }
    
        @OutputFile
        private File reportFile = new File(getProject().getBuildDir(), "reports/licenseHeaders/rat.xml");
    
        /**
         * Allowed license families for this project.
         */
        @Input
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 10.6K bytes
    - Click Count (0)
Back to Top