2023-08-22 23:43:53 +00:00
|
|
|
plugins {
|
2024-02-23 00:54:30 +00:00
|
|
|
id 'fabric-loom' version '1.5-SNAPSHOT'
|
2023-08-22 23:43:53 +00:00
|
|
|
id 'maven-publish'
|
|
|
|
}
|
|
|
|
|
|
|
|
version = project.mod_version
|
|
|
|
group = project.maven_group
|
|
|
|
|
|
|
|
base {
|
|
|
|
archivesName = project.archives_base_name
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
2024-02-23 00:54:30 +00:00
|
|
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
|
|
|
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
2023-08-22 23:43:53 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
|
|
|
|
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
expand "version": project.version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
it.options.encoding = "UTF-8"
|
|
|
|
it.options.release = 17
|
|
|
|
it.options.compilerArgs += ['-Xlint:deprecation', '-Xlint:unchecked']
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
|
2024-02-23 00:54:30 +00:00
|
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
|
2023-08-22 23:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2024-02-22 21:10:42 +00:00
|
|
|
from('../LICENSE') {
|
2023-08-22 23:43:53 +00:00
|
|
|
rename { "${it}_${project.base.archivesName.get()}"}
|
|
|
|
}
|
|
|
|
}
|
2024-02-22 21:10:42 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
2024-02-22 23:27:29 +00:00
|
|
|
srcDirs = [
|
|
|
|
'../src/shared',
|
2024-02-23 00:54:30 +00:00
|
|
|
'../src/fabric-shared',
|
2024-02-22 23:27:29 +00:00
|
|
|
'../src/rpc-gson',
|
|
|
|
'../src/fabric',
|
|
|
|
]
|
2024-02-23 00:54:30 +00:00
|
|
|
include '**/*.java'
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs = ['../src', '../src/fabric']
|
|
|
|
include 'fabric.mod.json'
|
|
|
|
include 'flashii-extensions.mixins.json'
|
|
|
|
include 'assets/icon.png'
|
2024-02-22 21:10:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|