add fastjson library and test classes

This commit is contained in:
Joseph Garcia 2020-12-10 13:20:26 -06:00
parent 68e21b92ee
commit a12de0abf6
3 changed files with 11 additions and 0 deletions

View File

@ -26,6 +26,9 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// Serialization
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.56'
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
dependencies {

View File

@ -0,0 +1,4 @@
package com.josyf.macrobuttons;
public class ConfigFile {
}

View File

@ -0,0 +1,4 @@
package com.josyf.macrobuttons;
public class Message {
}