We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9d258 commit 3bdf253Copy full SHA for 3bdf253
build.gradle
@@ -28,6 +28,7 @@ allprojects {
28
ext.gvrVersion = '1.150.0'
29
ext.processingVersion = '3.3.7'
30
ext.toolingVersion = '4.3'
31
+ ext.slf4jVersion = '1.7.25'
32
ext.gradlewVersion = '4.4.1'
33
ext.toolsLibVersion = '26.0.0-dev'
34
mode/build.gradle
@@ -8,6 +8,8 @@ dependencies {
8
compile group: "org.processing", name: "java-mode", version: "${processingVersion}"
9
10
compileOnly "org.gradle:gradle-tooling-api:${toolingVersion}"
11
+ compileOnly "org.slf4j:slf4j-api:${slf4jVersion}"
12
+ compileOnly "org.slf4j:slf4j-simple:${slf4jVersion}"
13
}
14
15
// This task copies the gradle tooling jar into the mode folder
0 commit comments