blob: 05c079173180df842c125e0340322e19962f01bf (
plain)
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
|
// Add any additional repositories for your dependencies here
repositories {
exclusiveContent {
forRepository {
ivy {
name = 'CoreTweaks releases'
url = 'https://github.com/makamys/CoreTweaks/releases/download/'
patternLayout {
artifact '[revision]/[module]-1.7.10-[revision]+nomixin(-[classifier])(.[ext])'
}
metadataSources {
artifact()
}
}
}
filter {
includeGroup('CoreTweaks')
}
}
ivy {
url 'https://files.vexatos.com/'
patternLayout {
artifact "[module]/[artifact]-[revision](-[classifier])(.[ext])"
}
content {
includeGroup("TGregworks")
}
metadataSources {
artifact()
}
}
}
|