Interface UberJarDuplicatedJarsWarner
-
- All Known Implementing Classes:
ManifestUberJarDuplicatedJarsWarner
public interface UberJarDuplicatedJarsWarnerChecks if classpath contains proper configuration for Uber Jars and warns if it does not.- Author:
- slaskawi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisClasspathCorrect()Synchronously checks if classpath looks correct for Uber Jar usage.CompletableFuture<Boolean>isClasspathCorrectAsync()Asynchronously checks if classpath looks correct for Uber Jar usage.
-
-
-
Method Detail
-
isClasspathCorrect
boolean isClasspathCorrect()
Synchronously checks if classpath looks correct for Uber Jar usage.- Returns:
trueif duplicate is found.
-
isClasspathCorrectAsync
CompletableFuture<Boolean> isClasspathCorrectAsync()
Asynchronously checks if classpath looks correct for Uber Jar usage.- Returns:
CompletableFuturewith the result.
-
-