baritone/build.gradle

75 lines
2.2 KiB
Groovy
Raw Normal View History

/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
2021-06-23 17:24:22 +00:00
plugins {
2022-04-03 04:36:18 +00:00
id "architectury-plugin" version "3.4-SNAPSHOT"
id 'dev.architectury.loom' version '0.11.0-SNAPSHOT' apply false
}
2022-04-03 04:36:18 +00:00
architectury {
minecraft = rootProject.minecraft_version
}
2022-04-03 04:36:18 +00:00
subprojects {
apply plugin: 'java'
apply plugin: "maven-publish"
apply plugin: "dev.architectury.loom"
2022-04-03 04:36:18 +00:00
archivesBaseName = rootProject.archives_base_name
version = rootProject.mod_version
group = rootProject.maven_group
2021-06-16 08:12:47 +00:00
2022-04-03 04:36:18 +00:00
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_16
2022-04-03 04:36:18 +00:00
loom {
silentMojangMappingsLicense()
}
2022-04-03 04:36:18 +00:00
dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
// The following line declares the mojmap mappings, you may use other mappings as well
mappings loom.officialMojangMappings()
// The following line declares the yarn mappings you may select this one as well.
// mappings "net.fabricmc:yarn:1.17.1+build.32:v2"
2021-10-09 20:16:57 +00:00
}
2022-04-03 04:36:18 +00:00
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
2022-04-03 04:36:18 +00:00
def targetVersion = 16
if (JavaVersion.current().isJava9Compatible()) {
it.options.release = targetVersion
}
}
}
2022-04-03 04:36:18 +00:00
allprojects {
apply plugin: "architectury-plugin"
2021-06-16 08:12:47 +00:00
2022-04-03 04:36:18 +00:00
repositories {
maven {
name = 'impactdevelopment-repo'
url = 'https://impactdevelopment.github.io/maven/'
2021-01-20 06:11:08 +00:00
}
2022-04-03 04:36:18 +00:00
maven {
name = "ldtteam"
url = "https://maven.parchmentmc.net/"
}
mavenCentral()
}
2021-06-16 08:12:47 +00:00
}