|
1 | 1 | plugins { |
2 | | - id 'fabric-loom' version '1.7-SNAPSHOT' |
| 2 | + id 'fabric-loom' version "${project.loom_version}" |
3 | 3 | id 'maven-publish' |
4 | 4 | } |
5 | 5 |
|
@@ -27,26 +27,26 @@ dependencies { |
27 | 27 | // Fabric API. This is technically optional, but you probably want it anyway. |
28 | 28 | modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" |
29 | 29 |
|
30 | | - modImplementation('net.kyrptonaught:kyrptconfig:1.6.1-1.21') |
31 | | - include('net.kyrptonaught:kyrptconfig:1.6.1-1.21') |
| 30 | + modImplementation("net.kyrptonaught:kyrptconfig:${project.kyrptconfig_version}") |
| 31 | + include("net.kyrptonaught:kyrptconfig:${project.kyrptconfig_version}") |
32 | 32 |
|
33 | | - modImplementation ("com.terraformersmc:modmenu:11.0.1"){ |
| 33 | + modImplementation ("com.terraformersmc:modmenu:${project.modmenu_version}"){ |
34 | 34 | transitive(false) |
35 | 35 | } |
36 | 36 |
|
37 | | - modImplementation "com.ptsmods:devlogin:3.5" |
| 37 | + modImplementation "com.ptsmods:devlogin:${project.devlogin_version}" |
38 | 38 |
|
39 | 39 | //midnightcontrols |
40 | | - modImplementation "maven.modrinth:obsidianui:0.2.6+mc1.21-fabric" |
41 | | - modImplementation "maven.modrinth:midnightlib:1.5.7-fabric" |
42 | | - modImplementation "maven.modrinth:midnightcontrols:1.9.7+1.21" |
| 40 | + modImplementation "maven.modrinth:obsidianui:${project.obsidianui_version}" |
| 41 | + modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}" |
| 42 | + modImplementation "maven.modrinth:midnightcontrols:${project.midnightcontrols_version}" |
43 | 43 | api('org.aperlambda:lambdajcommon:1.8.1') { |
44 | 44 | exclude group: 'com.google.code.gson' |
45 | 45 | exclude group: 'com.google.guava' |
46 | 46 | } |
47 | 47 |
|
48 | | - modCompileOnly("maven.modrinth:legacy4j:FCCksEvY") |
49 | | - modCompileOnly("maven.modrinth:factory-api:fT3o5Hoh") |
| 48 | + modCompileOnly("maven.modrinth:legacy4j:${project.legacy4j_version}") |
| 49 | + modCompileOnly("maven.modrinth:factory-api:${project.factoryapi_version}") |
50 | 50 | } |
51 | 51 |
|
52 | 52 | base { |
|
0 commit comments