-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix useless expression and update fabric to 1.20.6
- Loading branch information
Showing
2 changed files
with
47 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,60 @@ | ||
plugins { | ||
id 'fabric-loom' version '1.6-SNAPSHOT' | ||
id 'maven-publish' | ||
id 'fabric-loom' version '1.7-SNAPSHOT' | ||
} | ||
|
||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
base { | ||
archivesName = project.archives_base_name + '-' + project.minecraft_version_out | ||
} | ||
|
||
archivesBaseName = project.archives_base_name + '-' + project.minecraft_version_out | ||
version = project.mod_version | ||
group = project.maven_group | ||
|
||
repositories { | ||
maven { url 'https://maven.wispforest.io' } | ||
maven { url 'https://masa.dy.fi/maven' } | ||
maven { url 'https://maven.terraformersmc.com/releases/' } | ||
maven { url 'https://maven.wispforest.io' } | ||
maven { url 'https://jitpack.io' } | ||
maven { url 'https://maven.terraformersmc.com/releases/' } | ||
} | ||
|
||
dependencies { | ||
// To change the versions see the gradle.properties file | ||
minecraft "com.mojang:minecraft:${project.minecraft_version}" | ||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" | ||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" | ||
|
||
// Fabric API. This is technically optional, but you probably want it anyway. | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" | ||
|
||
modImplementation "fi.dy.masa.malilib:malilib-fabric-${project.minecraft_version}:${project.malilib_version}" | ||
|
||
modCompileOnly "com.terraformersmc:modmenu:${project.modmenu_version}" | ||
|
||
// 以支持 mp3 播放 | ||
|
||
// https://mvnrepository.com/artifact/javazoom/jlayer | ||
implementation group: 'javazoom', name: 'jlayer', version: '1.0.1' | ||
include group: 'javazoom', name: 'jlayer', version: '1.0.1' | ||
|
||
// https://mvnrepository.com/artifact/com.googlecode.soundlibs/mp3spi | ||
implementation group: 'com.googlecode.soundlibs', name: 'mp3spi', version: '1.9.5.4' | ||
include group: 'com.googlecode.soundlibs', name: 'mp3spi', version: '1.9.5.4' | ||
|
||
// https://mvnrepository.com/artifact/com.googlecode.soundlibs/tritonus-share | ||
implementation group: 'com.googlecode.soundlibs', name: 'tritonus-share', version: '0.3.7.4' | ||
include group: 'com.googlecode.soundlibs', name: 'tritonus-share', version: '0.3.7.4' | ||
|
||
// 以支持 flac 播放 | ||
|
||
// https://mvnrepository.com/artifact/org.jflac/jflac-codec | ||
implementation group: 'org.jflac', name: 'jflac-codec', version: '1.5.2' | ||
include group: 'org.jflac', name: 'jflac-codec', version: '1.5.2' | ||
|
||
// 二维码 | ||
|
||
// https://mvnrepository.com/artifact/com.google.zxing/core | ||
implementation group: 'com.google.zxing', name: 'core', version: '3.5.1' | ||
include group: 'com.google.zxing', name: 'core', version: '3.5.1' | ||
|
||
minecraft "com.mojang:minecraft:${project.minecraft_version}" | ||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" | ||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" | ||
modImplementation "com.github.sakura-ryoko:malilib:${project.malilib_version}" | ||
modCompileOnly "com.terraformersmc:modmenu:${project.modmenu_version}" | ||
|
||
// 以支持 mp3 播放 | ||
implementation("javazoom:jlayer:1.0.1") | ||
// MP3SPI,用于解码mp3文件 | ||
implementation("com.googlecode.soundlibs:mp3spi:1.9.5.4") | ||
// Tritonus Share,提供音频处理服务 | ||
implementation("com.googlecode.soundlibs:tritonus-share:0.3.7.4") | ||
// JFlac Codec,用于解码flac文件 | ||
implementation("org.jflac:jflac-codec:1.5.2") | ||
// ZXing Core,用于二维码处理 | ||
implementation("com.google.zxing:core:3.5.1") | ||
include("javazoom:jlayer:1.0.1") | ||
include("com.googlecode.soundlibs:mp3spi:1.9.5.4") | ||
include("com.googlecode.soundlibs:tritonus-share:0.3.7.4") | ||
include("org.jflac:jflac-codec:1.5.2") | ||
include("com.google.zxing:core:3.5.1") | ||
} | ||
|
||
processResources { | ||
inputs.property "version", project.version | ||
inputs.property "version", project.version | ||
|
||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version | ||
} | ||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version | ||
} | ||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { | ||
// Minecraft 1.18 (1.18-pre2) upwards uses Java 17. | ||
it.options.release = 17 | ||
it.options.release = 21 | ||
it.options.encoding = "UTF-8" | ||
sourceCompatibility = JavaVersion.VERSION_21 | ||
targetCompatibility = JavaVersion.VERSION_21 | ||
} | ||
|
||
jar { | ||
from("LICENSE") { | ||
rename { "${it}_${project.archivesBaseName}"} | ||
} | ||
} | ||
|
||
// configure the maven publication | ||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
from components.java | ||
} | ||
} | ||
|
||
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. | ||
repositories { | ||
// Add repositories to publish to here. | ||
// Notice: This block does NOT have the same function as the block in the top level. | ||
// The repositories here will be used for publishing your artifact, not for | ||
// retrieving dependencies. | ||
} | ||
from("LICENSE") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
org.gradle.parallel=true | ||
|
||
# Fabric Properties | ||
minecraft_version=1.20.4 | ||
yarn_mappings=1.20.4+build.3 | ||
loader_version=0.15.0 | ||
|
||
#Fabric api | ||
fabric_version=0.95.1+1.20.4 | ||
|
||
# Mod Properties | ||
mod_version = 0.4.7 | ||
maven_group = fengliu.cloudmusic | ||
archives_base_name = cloudmusic-mod | ||
|
||
minecraft_version_out=1.20.4 | ||
|
||
# Required malilib version | ||
malilib_version = 0.18.0 | ||
|
||
modmenu_version = 9.0.0 | ||
yarn_mappings=1.20.6+build.3 | ||
loader_version=0.15.11 | ||
fabric_version=0.100.2+1.20.6 | ||
mod_version=0.4.7 | ||
maven_group=fengliu.cloudmusic | ||
archives_base_name=cloudmusic-mod | ||
minecraft_version_out=1.20.6 | ||
malilib_version=1.20.6-0.19.0 | ||
modmenu_version=9.0.0 |