i am using 3 libraries for my mod: CodeChickenLib-dev.jar, Mantle-dev.jar, mysql-connector.jar-bin.jar
the game works fine when i run it in eclipse, but when I try to gradlew build it, those dependencies are not being included into my mods' compiled jar. The libraries are located in the root project folder, inside of a folder named 'libs'
I tried adding this to the build.gradle file:
dependencies{
compile files('libs/CodeChickenLib-1.7.10-1.1.3.140-dev.jar', 'libs/Mantle-1.7.10dev.jar', 'libs/mysql-connector-java-5.1.38-bin.jar')
}
but it still won't added the dependencies.