-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
98 lines (84 loc) · 2.77 KB
/
build.gradle
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
buildscript {
configurations.classpath {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}
plugins {
id "dev.architectury.loom" version "1.0-SNAPSHOT" apply false
id "io.github.juuxel.loom-quiltflower" version "1.8.0" apply false
id "architectury-plugin" version "3.4-SNAPSHOT"
id "me.shedaniel.unified-publishing" version "0.1.+" apply false
id "maven-publish"
}
architectury {
minecraft = rootProject.minecraft_version
}
subprojects {
apply plugin: "dev.architectury.loom"
apply plugin: "io.github.juuxel.loom-quiltflower"
archivesBaseName = "${rootProject.name}-${project.name}"
loom {
silentMojangMappingsLicense()
}
dependencies {
minecraft "com.mojang:minecraft:${rootProject.architectury.minecraft}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${rootProject.minecraft_version}:${rootProject.parchment_version}")
}
}
}
allprojects {
apply plugin: "java"
apply plugin: "maven-publish"
apply plugin: "architectury-plugin"
version = "${rootProject.mod_version}+${rootProject.minecraft_version}"
group = rootProject.maven_group
repositories {
mavenLocal()
maven {
url "https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1"
content {
includeGroup "me.djtheredstoner"
}
}
maven { url "https://repo.moonflower.gg/releases" }
maven { url "https://jitpack.io" }
maven { url "https://maven.parchmentmc.org" }
maven { url "https://maven.terraformersmc.com/" }
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release.set(17)
}
ext {
createChangelog = {
def changes = new StringBuilder()
changes << "$rootProject.mod_name $rootProject.mod_version for $project.supported_version\n"
def proc = "git log --max-count=200 --pretty=format:%s".execute()
proc.in.eachLine { line ->
def processedLine = line.toString()
if (!processedLine.toLowerCase().contains("translations") &&
!processedLine.toLowerCase().contains("merge") &&
!processedLine.toLowerCase().contains("branch")
) {
changes << "\n- ${processedLine.capitalize()}"
}
}
proc.waitFor()
return changes.toString()
}
}
javadoc {
failOnError = false
}
java {
withSourcesJar()
}
}