We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91de11c commit 5d0e3f2Copy full SHA for 5d0e3f2
build.gradle
@@ -15,7 +15,9 @@ dependencies {
15
'com.amazonaws:aws-lambda-java-core:1.2.0',
16
'com.amazonaws:aws-lambda-java-events:1.2.0',
17
)
18
- compile('org.algorithm-visualizer:tracers.java:+') { changing = true }
+ compile(
19
+ 'org.algorithm-visualizer:tracers.java:' + (System.getenv('TRACERS_VERSION') ?: '+')
20
+ ) { changing = true }
21
}
22
23
task buildZip(type: Zip) {
0 commit comments