File tree Expand file tree Collapse file tree
org/mangorage/mangobotmixin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,15 +72,16 @@ repositories {
7272dependencies {
7373
7474 installer(' org.mangorage:installer:4.0.26' )
75- bootstrap(" org.mangorage:mangobotbootstrap:1.0.68 " )
75+ bootstrap(" org.mangorage:mangobotbootstrap:1.0.72 " )
7676
77- plugin(' org.mangorage:mangobot:12.0.76 ' )
77+ plugin(' org.mangorage:mangobot:12.0.80 ' )
7878
7979
8080 // SpongeMixin...
8181 library(' net.fabricmc:sponge-mixin:0.15.4+mixin.0.8.7' )
8282 library(' io.github.llamalad7:mixinextras-common:0.4.1' )
8383
84+ library(" com.google.code.gson:gson:2.10.1" )
8485 library(' org.ow2.asm:asm:9.8' )
8586 library(' org.ow2.asm:asm-util:9.8' )
8687 library(' org.ow2.asm:asm-analysis:9.8' )
Original file line number Diff line number Diff line change 1717 provides org .mangorage .bootstrap .api .transformer .IClassTransformer with org .mangorage .mangobotmixin .services .SpongeMixinClassTransformerImpl ;
1818
1919 // MangoBot Services
20- provides org .mangorage .mangobotcore .plugin .api .Plugin with org .mangorage .mangobotmixin .plugin .MangoBotMixinPlugin ;
21- provides org .mangorage .mangobotcore .plugin .api .IPluginInfoGetter with org .mangorage .mangobotmixin .services .MetadataInfoGrabberImpl ;
20+ provides org .mangorage .mangobotcore .api . plugin .v1 .Plugin with org .mangorage .mangobotmixin .plugin .MangoBotMixinPlugin ;
21+ provides org .mangorage .mangobotcore .api . plugin .v1 .IPluginInfoGetter with org .mangorage .mangobotmixin .services .MetadataInfoGrabberImpl ;
2222
2323 // Mixin Service
2424 provides org .spongepowered .asm .service .IGlobalPropertyService with org .mangorage .mangobotmixin .mixin .services .MangoBotMixinBlackboardImpl ;
2929 uses org .mangorage .bootstrap .api .module .IModuleConfigurator ;
3030
3131 // MangoBot Services
32- uses org .mangorage .mangobotcore .plugin .api .Plugin ;
33- uses org .mangorage .mangobotcore .plugin .api .IPluginInfoGetter ;
32+ uses org .mangorage .mangobotcore .api . plugin .v1 .Plugin ;
33+ uses org .mangorage .mangobotcore .api . plugin .v1 .IPluginInfoGetter ;
3434
3535 // Mixin Service
3636 uses org .spongepowered .asm .service .IGlobalPropertyService ;
Original file line number Diff line number Diff line change 11package org .mangorage .mangobotmixin .plugin ;
22
3- import org .mangorage .mangobotcore .plugin .api .MangoBotPlugin ;
4- import org .mangorage .mangobotcore .plugin .api .Plugin ;
3+
4+ import org .mangorage .mangobotcore .api .plugin .v1 .MangoBotPlugin ;
5+ import org .mangorage .mangobotcore .api .plugin .v1 .Plugin ;
56
67@ MangoBotPlugin (id = MangoBotMixinPlugin .ID )
78public final class MangoBotMixinPlugin implements Plugin {
Original file line number Diff line number Diff line change 11package org .mangorage .mangobotmixin .services ;
22
3- import org .mangorage .mangobotcore .plugin .api .IPluginInfoGetter ;
4- import org .mangorage .mangobotcore .plugin .api .Metadata ;
3+ import org .mangorage .mangobotcore .api . plugin .v1 .IPluginInfoGetter ;
4+ import org .mangorage .mangobotcore .api . plugin .v1 .Metadata ;
55import org .spongepowered .asm .mixin .Mixins ;
66
77import java .util .List ;
You can’t perform that action at this time.
0 commit comments