itdelatrisu/opsu

how to build opsu?

Opened this issue · 4 comments

hello. i would like to build opsu! and make a modified version of it. i've read the license and i was just wondering, do i have your permission to make a version of opsu!, i'll remove the branding just for your sake and legal sakes but how do i build it. ive never heard of maven or gradle in my life

I am not a lawyer but seeing how abandoned it is, no one would care if they modified it

yeah but how do you build opsu. i have no clue what maven or gradle is

Maven and Gradle are build automation software, there are links in the readme.
It doesn't seem like there's still a maven configuration, so that's not going to work despite the readme saying so.
The gradle configuration is still there, so you can use that.
So to build, this command should work to run:

gradlew.bat run

and to make a jar:

gradlew.bat jar

This will compile a jar to build/libs/opsu-${version}.jar with the libraries, resources and natives packed inside the jar.

if you're using linux, do ./gradlew instead of gradlew.bat