Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 91de11c

Browse files
committed
Disable download cache for tracers.java
1 parent 5a90b78 commit 91de11c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build.gradle

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ repositories {
55
maven { url "https://jitpack.io" }
66
}
77

8+
configurations.all {
9+
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
10+
}
11+
812
dependencies {
9-
compile (
10-
fileTree(dir: 'jars', include: '*.jar'),
11-
'com.amazonaws:aws-lambda-java-core:1.2.0',
12-
'com.amazonaws:aws-lambda-java-events:1.2.0',
13-
'org.algorithm-visualizer:tracers.java:+'
13+
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',
1417
)
18+
compile('org.algorithm-visualizer:tracers.java:+') { changing = true }
1519
}
1620

1721
task buildZip(type: Zip) {

0 commit comments

Comments
 (0)