I use gradle to get the Flowable engine into my java project, e.g., like this:
implementation group: 'org.flowable', name: 'flowable-engine', version: '6.7.2'
This gives me a release that is already somewhat dated, and contains some security vulnerabilities.
In the Flowable Git repo I can see that meanwhile there exists a 6.7.2.36 version, which is quite current. How can I pull in that latest version into my Java project?
– Thomas