]> git.lizzy.rs Git - LightOverlay.git/blob - build.gradle
Use archiveClassifier instead of classifier
[LightOverlay.git] / build.gradle
1 plugins {
2     id "architectury-plugin" version "3.4-SNAPSHOT"
3     id "dev.architectury.loom" version "1.0-SNAPSHOT" apply false
4 }
5
6 architectury {
7     minecraft = minecraft_version
8 }
9
10 subprojects {
11     apply plugin: "dev.architectury.loom"
12
13     loom {
14         silentMojangMappingsLicense()
15     }
16 }
17
18 allprojects {
19     apply plugin: "java"
20     apply plugin: "architectury-plugin"
21
22     group "me.shedaniel"
23     archivesBaseName = rootProject.name
24     version = rootProject.mod_version
25
26     repositories {
27         maven { url "https://maven.terraformersmc.com/releases" }
28     }
29
30     tasks.withType(JavaCompile) {
31         options.encoding = "UTF-8"
32         options.release = 17
33     }
34 }