Last active
August 29, 2015 14:08
-
-
Save maxov/840c8c6ae3453d93e9f4 to your computer and use it in GitHub Desktop.
Aquifer package format
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
// a client-side package (nudge nudge wink wink) | |
{ | |
"name": "my-name", | |
"owner": "org-or-user", | |
"version": "0.5.0", | |
"paths": { | |
"artifact": "builds/my-name-*.jar", | |
"docs": "docs/" | |
}, | |
"dependencies": { | |
"mc": "1.8.1", | |
"sponge-client": "1.0.5" | |
} | |
} |
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
// a server-side package | |
{ | |
"name": "my-name", | |
"owner": "org-or-user", | |
"version": "0.5.0", | |
"paths": { | |
"artifact": "builds/my-name-*.jar", | |
"docs": "docs/" | |
}, | |
"dependencies": { | |
"mc": "1.8.1", | |
"sponge-server": "1.0.5" | |
} | |
} |
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
// a modpack | |
{ | |
"name": "my-modpack", | |
"owner": "org-or-user", | |
"version": "0.5.0", | |
"paths": { | |
// because there are no artifacts(this is just a pack of mods), they are not specified | |
"docs": "docs/" | |
}, | |
"dependencies": { | |
"mc": "1.8.1", | |
"sponge-client": "1.0.5", | |
"my-mod": "0.3.4", | |
"my-other-mod": "0.5.6" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment