Hello,
I’m taking the development of one of my plugin, I only have a little trouble configuring Gradle.
The structure of my project is:
my-plugin:
|
| -> API
| |->build.gradle
| -> Imp
| |->build.gradle
|
| -> settings.gradle
| -> build.gradle
My implementation and my API implementation depend both on Sponge API but my implementation also depends on my API. The implementation is of the API so in the API should be included the final jar.
Currently I can’t do this step: Include my compiled API in the final jar.
Suggestions?