in src/main/groovy/com/epam/atg/gradle/build/module/ATGModule.groovy [64:79]
private void initializeClassPath(Manifest manifest) {
classPathEntries = ManifestUtils.getATGModuleClassPath(manifest)
//TODO find out if need such functionality
//classPathEntries.addAll(ManifestUtils.getATGIndividualResources(manifest))
classPathDependencyFiles = new ArrayList<>()
String moduleAbsolutePath = moduleLocation.absolutePath
LOGGER.debug("initializeClassPath -> moduleAbsolutePath: {}", moduleAbsolutePath)
for (String classPathEntry : classPathEntries) {
File classPathDependencyFile = new File(moduleAbsolutePath + File.separator + classPathEntry)
if (classPathDependencyFile.exists()) {
classPathDependencyFiles.add(classPathDependencyFile)
}
}
LOGGER.debug("initializeClassPath-> manifest: {} classPathEntries: {}, classPathDependencyFiles: {}",
ManifestUtils.getDescription(manifest), classPathEntries, classPathDependencyFiles)
}