Galeno de Melo
12/09/2025, 5:51 PM./gradlew assetCompile , the gradle task compiles nicely until the first .scss file.
Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)
It happens mostly when using Docker with Java Temurin 8 image, but it sometimes happens locally on some devs computers. We are using the 3.2.5 version of asset pipeline plugin
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.2.5"
classpath "com.bertramlabs.plugins:asset-pipeline-core:3.2.5"
classpath "com.bertramlabs.plugins:sass-asset-pipeline:3.2.5"
When I tried moving to 3.4.0 with Sass Dart version, I saw the memory used by the process on System Monitoring jump from 3GB to 24GB in less than a minute. The files were being processed correctly and looking the debug logs I didn't find any circular injection, for example.
Do anybody else had this problem or something similar? Thanks in advancegaolei
12/09/2025, 5:59 PMassets {
minifyJs = true
minifyCss = true
enableSourceMaps = true
configOptions = [:]
minifyOptions = [
languageMode : 'ES6',
targetLanguage : 'ES6', //Can go from ES6 to ES5 for those bleeding edgers
optimizationLevel: 'SIMPLE',
excludes : ['**/static/*.*', '**/*.html']
]
includes = ['**/*.hbs']
excludes = [
'**/*.less',
'**/static/*.*',
] //Example Exclude GLOB pattern
//for plugin packaging
packagePlugin = false //set to true if this is a library
//developmentRuntime can be turned off
developmentRuntime = false
//if you want to customize the jar task this task runs on you can specify a jarTaskName
jarTaskName = null
// Can add custom asset locations (directories or individual jar files)
from '/vendor/lib'
}Galeno de Melo
12/09/2025, 8:52 PMgaolei
12/09/2025, 11:37 PMjdaugherty
12/10/2025, 2:30 PMGaleno de Melo
12/10/2025, 2:50 PM