-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (63 loc) · 2.57 KB
/
Copy pathbuild.gradle
File metadata and controls
64 lines (63 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
configurations.classpath {
resolutionStrategy.activateDependencyLocking()
resolutionStrategy.force(
"org.apache.commons:commons-compress:1.26.0",
"org.apache.commons:commons-lang3:3.18.0",
"org.jdom:jdom2:2.0.6.1",
"org.bitbucket.b_c:jose4j:0.9.6",
"com.google.protobuf:protobuf-java:3.25.5",
"com.google.protobuf:protobuf-java-util:3.25.5",
"com.google.protobuf:protobuf-kotlin:3.25.5",
"io.netty:netty-buffer:4.1.129.Final",
"io.netty:netty-codec:4.1.129.Final",
"io.netty:netty-codec-http:4.1.129.Final",
"io.netty:netty-codec-http2:4.1.129.Final",
"io.netty:netty-codec-socks:4.1.129.Final",
"io.netty:netty-common:4.1.129.Final",
"io.netty:netty-handler:4.1.129.Final",
"io.netty:netty-handler-proxy:4.1.129.Final",
"io.netty:netty-resolver:4.1.129.Final",
"io.netty:netty-transport:4.1.129.Final",
"io.netty:netty-transport-native-unix-common:4.1.129.Final"
)
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:8.13.2"
}
}
allprojects {
dependencyLocking {
lockAllConfigurations()
}
configurations.configureEach {
resolutionStrategy.force(
"org.apache.commons:commons-compress:1.26.0",
"org.apache.commons:commons-lang3:3.18.0",
"org.jdom:jdom2:2.0.6.1",
"org.bitbucket.b_c:jose4j:0.9.6",
"com.google.protobuf:protobuf-java:3.25.5",
"com.google.protobuf:protobuf-java-util:3.25.5",
"com.google.protobuf:protobuf-kotlin:3.25.5",
"io.netty:netty-buffer:4.1.129.Final",
"io.netty:netty-codec:4.1.129.Final",
"io.netty:netty-codec-http:4.1.129.Final",
"io.netty:netty-codec-http2:4.1.129.Final",
"io.netty:netty-codec-socks:4.1.129.Final",
"io.netty:netty-common:4.1.129.Final",
"io.netty:netty-handler:4.1.129.Final",
"io.netty:netty-handler-proxy:4.1.129.Final",
"io.netty:netty-resolver:4.1.129.Final",
"io.netty:netty-transport:4.1.129.Final",
"io.netty:netty-transport-native-unix-common:4.1.129.Final"
)
}
repositories {
google()
mavenCentral()
}
}