- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for licensesDir (0.06 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java
*/ private List<File> licensesDirs = new ArrayList<File>(); public NoticeTask() { setDescription("Create a notice file from dependencies"); // Default licenses directory is ${projectDir}/licenses (if it exists) File licensesDir = new File(getProject().getProjectDir(), "licenses"); if (licensesDir.exists()) { licensesDirs.add(licensesDir); } } /**Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.9K bytes - Click Count (0) -
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; } /**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) -
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)