I need to run a Java class at the end of my build. This is an externally provide jar with dependency on a second jar.
My understanding is that JavaExec starts a separate JVM to run the jar. Looking at the parameters I am getting confused. The parameter ‘classpath’ says ‘for executing the main class’.
The error message I am getting says that classpath expects a FileCollection. I can not work out how to make a FileCollection with 2 files. The documentation says you can use Project.files to do this but it doesn’t exist I get an Unresolved reference for files.
The documentation is not very easy to decipher, can anyone point me in the right direction?
Thanks