some problems with java and slf4j Made project using idea and it is ok. But in case I try to make jar with gradle I have some problems.
build.gradle
JVM cannot find dependencies on classpath because they're not on classpath obviously. By default Gradle and Maven add just your classes to a jar and you have to specify paths to the dependencies manually with the -cp
argument. If you want to build a fat jar you can use ShadowJar with Gradle and Shade with Maven.