-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathbuild.gradle
42 lines (35 loc) · 905 Bytes
/
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
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.7-SNAPSHOT" apply false
}
architectury {
minecraft = rootProject.minecraft_version
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
architectury {
compileOnly()
}
base.archivesName = rootProject.archives_base_name
ext.mavenVersion = "${rootProject.mod_version}"
if (System.getenv("RELEASE") == null) {
ext.mavenVersion += "-SNAPSHOT"
}
ext.mavenVersion += "+${rootProject.minecraft_version}"
version = "${project.ext.mavenVersion}+${project.name}"
group = rootProject.maven_group
repositories {
maven {
url = "https://maven.blamejared.com/"
}
}
tasks.withType(JavaCompile).configureEach({
options.encoding = "UTF-8"
options.release = 21
})
java {
withSourcesJar()
}
}