- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getLicensesDir (0.06 seconds)
-
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) -
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) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java
return dependencies; } public void setDependencies(FileCollection dependencies) { this.dependencies = dependencies; } @Optional @InputDirectory public File getLicensesDir() { if (licensesDir.exists()) { return licensesDir; } return null; } public void setLicensesDir(File licensesDir) {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)