Skip to content

Commit 5d0e3f2

Browse files
committed
Let travis build with the specified tracers version
1 parent 91de11c commit 5d0e3f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ dependencies {
1515
'com.amazonaws:aws-lambda-java-core:1.2.0',
1616
'com.amazonaws:aws-lambda-java-events:1.2.0',
1717
)
18-
compile('org.algorithm-visualizer:tracers.java:+') { changing = true }
18+
compile(
19+
'org.algorithm-visualizer:tracers.java:' + (System.getenv('TRACERS_VERSION') ?: '+')
20+
) { changing = true }
1921
}
2022

2123
task buildZip(type: Zip) {

0 commit comments

Comments
 (0)