Skip to content

Commit

Permalink
添加RxJava作为项目依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
HeChuQIU committed Dec 24, 2023
1 parent 1d54e71 commit e205459
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ plugins {
id 'org.spongepowered.mixin' version '0.7.+'
}

jarJar.enable()

group = mod_group_id
version = mod_version

Expand All @@ -37,7 +39,7 @@ minecraft {
//
// Use non-default mappings at your own risk. They may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace.
mappings channel: mapping_channel, version: mapping_version
mappings channel: mapping_channel, version: mapping_version
// mappings channel: 'official', version: "1.19.2"
// mappings channel: 'parchment', version: '2022.08.14-1.19.2'

Expand Down Expand Up @@ -219,6 +221,9 @@ dependencies {

implementation fg.deobf("curse.maven:kiwi-303657:${kiwi_fileId}")
implementation("org.apache.commons:commons-io:1.3.2")

minecraftLibrary 'io.reactivex.rxjava3:rxjava:3.1.8'
jarJar(group: 'io.reactivex.rxjava3', name: 'rxjava', version: '[3.1.8,)')
// annotationProcessor "curse.maven:kiwi-303657:${kiwi_fileId}"
// Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
Expand Down

0 comments on commit e205459

Please sign in to comment.