aboutsummaryrefslogtreecommitdiff
path: root/makalibs.gradle
diff options
context:
space:
mode:
authormakamys <makamys@outlook.com>2022-06-21 09:21:26 +0200
committermakamys <makamys@outlook.com>2022-06-21 09:22:34 +0200
commitb043e75245429a2b6ee1402cee826fcec8f7af04 (patch)
tree32f9e5467abf405d5d435302ac3288a5da2845e1 /makalibs.gradle
parent30fd0a05f82ec32b67fb629f35fd8bdaa3b5101f (diff)
downloadNeodymium-b043e75245429a2b6ee1402cee826fcec8f7af04.tar.gz
Neodymium-b043e75245429a2b6ee1402cee826fcec8f7af04.tar.bz2
Neodymium-b043e75245429a2b6ee1402cee826fcec8f7af04.zip
Add update check via MCLib
Diffstat (limited to 'makalibs.gradle')
-rw-r--r--makalibs.gradle19
1 files changed, 19 insertions, 0 deletions
diff --git a/makalibs.gradle b/makalibs.gradle
new file mode 100644
index 0000000..1460a57
--- /dev/null
+++ b/makalibs.gradle
@@ -0,0 +1,19 @@
+/* Common code in my projects using my libraries */
+
+repositories {
+ maven { url 'https://jitpack.io' }
+}
+
+minecraft {
+ srgExtra "PK: makamys/mclib makamys/${project.modid}/repackage/makamys/mclib"
+}
+
+dependencies {
+ shade('com.github.makamys:MCLib:0.3.3'){
+ exclude group: "codechicken"
+ }
+}
+
+minecraft {
+ replace '@UPDATE_URL@', project.update_url
+}