Skip to content

Commit

Permalink
Merge pull request #491 from bjagg/fix-xerces-error
Browse files Browse the repository at this point in the history
fix: correct Xerces classpath loading conflict
  • Loading branch information
bjagg authored Jan 20, 2021
2 parents 0b1564e + 0d9d76d commit dea69fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions overlays/uPortal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,10 @@ else {
String skinTmpDir = "${buildDir}/tmp/skin/uPortal/media/skins/respondr/"
// Identify custom skins located in skinsDir
logger.lifecycle "Preparing Gradle tasks to compile the following custom skin files defined in ${skinsDir}"
List<String> skinFiles = new FileNameFinder().getFileNames(skinsDir.path, '*.less')
FileTree skinFiles = fileTree(dir: skinsDir, include: "**/*.less")
// Step 3: Use NodeJS & lessc to compile custom skin(sz)
skinFiles.eachWithIndex { it, index ->
skinFiles.eachWithIndex { f, index ->
String it = f.toString()
// Strip the path
String skinFileName = it.substring(it.lastIndexOf(File.separator) + 1)
logger.lifecycle " -> ${skinFileName} $index"
Expand Down

0 comments on commit dea69fc

Please sign in to comment.