would it be possible (and logic?) trying to use gr...
# random
e
would it be possible (and logic?) trying to use gradle to analyze the list of modules used by the app (jdeps) and build the consequent command list and the corresponding output?
t
I am doing something on that line to build a custom jre, and so far I just adding library modules manually, and use jdeps only for my application dependencies
the thing is, if you are using fat-jars, you need to unpack it, and for every jar in it run jdeps, and it was not worth to invest time there yet
I got lucky what I am doing is spring boot based and there is a nice and working tutorial https://github.com/aws-samples/kubernetes-for-java-developers, so no much effort doing things manually
e
t
looks interesting 🤔