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 5a90b78 commit 91de11cCopy full SHA for 91de11c
build.gradle
@@ -5,13 +5,17 @@ repositories {
5
maven { url "https://jitpack.io" }
6
}
7
8
+configurations.all {
9
+ resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
10
+}
11
+
12
dependencies {
- compile (
- fileTree(dir: 'jars', include: '*.jar'),
- 'com.amazonaws:aws-lambda-java-core:1.2.0',
- 'com.amazonaws:aws-lambda-java-events:1.2.0',
13
- 'org.algorithm-visualizer:tracers.java:+'
+ compile(
14
+ fileTree(dir: 'jars', include: '*.jar'),
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 }
19
20
21
task buildZip(type: Zip) {
0 commit comments