There was an error while loading. Please reload this page.
This page covers how to build HomeManager from source.
git clone https://github.com/WinSMP/HomeManager.git cd HomeManager
This project uses Gradle as a build system, so use the following command to build the project:
./gradlew build
After a successful build, the compiled JAR is located at:
build/libs/HomeManager.jar
./gradlew test
For automatic rebuilding during development, consider using:
./gradlew build --continuous
Ensure you have JDK 21 installed:
java -version
If using a different JDK version, you can set JAVA_HOME:
JAVA_HOME
export JAVA_HOME=/path/to/jdk-21
If the Gradle wrapper is not executable:
chmod +x ./gradlew
Increase JVM memory for Gradle:
./gradlew build -Dorg.gradle.jvmargs="-Xmx2G"