-
Notifications
You must be signed in to change notification settings - Fork 44
Closed
Description
Currently, Gradle plugin is coupled with the build.gradle file which it is something not comfortable.
Gradle continue evolving the syntax and originally, we have this syntax:
compile("org.slf4j:slf4j-api:1.7.25")
compile("com.github.ev3dev-lang-java:lejos-commons:0.7.3")
compile("net.java.dev.jna:jna:4.5.2")
But we changed to this one:
implementation("org.slf4j:slf4j-api:1.7.25")
implementation("com.github.ev3dev-lang-java:lejos-commons:0.7.3")
implementation("net.java.dev.jna:jna:4.5.2")
But using a snapshot, we detected that library is not possible to be used
Reactions are currently unavailable