File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed
Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ mod.name=Remotely
44# Your mod's ID, which is used in the mod's metadata and for identifying the mod in the game. Must be unique from other mods.
55mod.id =remotely
66# The version of your mod, which is used in the mod's metadata and for version checks.
7- mod.version =2.0.0
7+ mod.version =2.0.0a
88# The Maven group ID for your mod, which is used in the mod's metadata and for dependency management.
99mod.group =redxax.oxy.remotely
1010# #####################
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ license="Custom License"
77modId =" ${mod_id}"
88version =" ${mod_version}"
99displayName =" ${mod_name}"
10- authors =" RedxAx, DumpFridge "
10+ authors =" RedxAx, DumbFridge "
1111description =" ${mod_description}"
1212logoFile =" assets/remotely/Reemotely.png"
1313
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ config = "mixins.${mod_id}.json"
1010modId =" ${mod_id}"
1111version =" ${mod_version}"
1212displayName =" ${mod_name}"
13- authors =" RedxAx, DumpFridge "
13+ authors =" RedxAx, DumbFridge "
1414description =" ${mod_description}"
1515logoFile =" assets/remotely/Reemotely.png"
1616
Original file line number Diff line number Diff line change 66 "description" : " ${mod_description}" ,
77 "authors" : [
88 " RedxAx" ,
9- " DumpFridge "
9+ " DumbFridge "
1010 ],
1111 "contact" : {
1212 "issues" : " https://github.com/RedxAx/Remotely/issues" ,
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
22 id(" java-library" )
33 id(" application" )
44 id(" org.openjfx.javafxplugin" ) version " 0.1.0"
5+ id(" com.github.johnrengelman.shadow" ) version " 8.1.1"
56}
67
78group = " redxax.oxy"
@@ -46,6 +47,11 @@ dependencies {
4647 runtimeOnly(" org.lwjgl:lwjgl-stb::natives-windows" )
4748 runtimeOnly(" org.lwjgl:lwjgl-glfw::natives-windows" )
4849
50+ runtimeOnly(" org.lwjgl:lwjgl::natives-linux" )
51+ runtimeOnly(" org.lwjgl:lwjgl-opengl::natives-linux" )
52+ runtimeOnly(" org.lwjgl:lwjgl-stb::natives-linux" )
53+ runtimeOnly(" org.lwjgl:lwjgl-glfw::natives-linux" )
54+
4955 val javafxVersion = " 21.0.3"
5056 implementation(" org.openjfx:javafx-graphics:${javafxVersion} " )
5157 runtimeOnly(" org.openjfx:javafx-graphics:${javafxVersion} :win" )
@@ -134,3 +140,10 @@ tasks.register<Exec>("createInstaller") {
134140 " --java-options" , " -Dfile.encoding=UTF-8 -Xmx4G"
135141 )
136142}
143+
144+ tasks.shadowJar {
145+ archiveFileName.set(" Remotely-Fat.jar" )
146+ manifest {
147+ attributes[" Main-Class" ] = " redxax.oxy.remotely.RemotelyInit"
148+ }
149+ }
You can’t perform that action at this time.
0 commit comments