blob: 88f75a8e68518d17a5ed9d4f34a8933693d9145a (
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
|
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}
plugins {
id 'io.shcm.shsupercm.fabric.stonecutter' version '1.2'
id 'fabric-loom' version '1.2-SNAPSHOT' apply false
id 'io.shcm.shsupercm.fabric.fletchingtable' version '1.6' apply false
id 'com.modrinth.minotaur' version '2.+' apply false
id 'com.matthewprenger.cursegradle' version '1.4.0' apply false
}
include 'defaults'
String[] targetMCVersions = [ '1.20.1', '1.19.4' ]
stonecutter.create(rootProject) {
versions targetMCVersions
}
stonecutter.create(project(':defaults')) {
versions targetMCVersions
}
|