-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
70 lines (59 loc) · 2.04 KB
/
Copy pathbuild.gradle
File metadata and controls
70 lines (59 loc) · 2.04 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
65
66
67
68
69
70
plugins {
id 'dev.architectury.loom' version '1.11-SNAPSHOT' apply false
id 'architectury-plugin' version '3.4-SNAPSHOT'
id 'com.gradleup.shadow' version '8.3.6' apply false
}
architectury {
minecraft = minecraft_version
}
allprojects {
group = maven_group
version = "${version}+${minecraft_version}"
}
subprojects {
apply plugin: 'dev.architectury.loom'
apply plugin: 'architectury-plugin'
apply plugin: 'maven-publish'
base {
archivesName = "${archive_name}-${project.name}"
}
repositories {
// ModMenu
maven { url = "https://maven.terraformersmc.com/" }
// MidnightLib and other mods
maven { url = "https://api.modrinth.com/maven"}
// cloth-config (dependency of ShulkerBoxTooltip)
maven { url = "https://maven.shedaniel.me/" }
// Reinforced Core
maven { url = "https://raw.githubusercontent.com/Aton-Kish/mcmod/maven" }
// Cardinal Components API
maven { url = "https://maven.ladysnake.org/releases"}
}
dependencies {
minecraft "net.minecraft:minecraft:${minecraft_version}"
mappings "net.fabricmc:yarn:${yarn_version}:v2"
//mappings loom.officialMojangMappings()
}
java {
withSourcesJar()
}
tasks.withType(JavaCompile).configureEach {
it.options.release = Integer.valueOf(java_version)
}
// configure Maven publishing
/*publishing {
publications {
mavenJava(MavenPublication) {
artifactId = base.archivesName.get()
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}*/
}