Hello, I'm trying to create a lib that has the dependency "okhttp and okio"
but let it be directly in the lib.
embedded.
I tried something like: @DependsOn(values={"okhttp-3.12.12", "okio-1.17.5"})
but i don't want to use #AdditionalJar
what better way to create a lib with all dependencies built in?
Yes, I know that, but my doubt is how to incorporate these external .jar files into my library.
i know adding @dependson will compile with SLC.
And then add #AdditionalJar.
But I need to incorporate these dependencies directly into the library.
What should I research to be able to do this?