20 lines
941 B
Text
20 lines
941 B
Text
## The following is an example gradle.properties file.
|
|
# You can use the gradle.properties file to customize several parts of the building process.
|
|
# You don't necessarily have to use all the keys. You can delete them, there are fallback values.
|
|
# Still, beware that misuse of the properties file may result in build failure.
|
|
# You shouldn't touch the properties starting with "bscv" unless you really know what you are doing.
|
|
|
|
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
|
|
org.gradle.jvmargs=-Xmx3G
|
|
|
|
# Disable gradle daemon, making it start and stop for each build
|
|
org.gradle.daemon=false
|
|
|
|
# Specify path to jdk to use for building
|
|
org.gradle.java.home=/usr/lib/jvm/java-8-openjdk/
|
|
|
|
# Automatically copy built jar into target directory
|
|
deployJar.do=true
|
|
|
|
# Target directory for jar deployment
|
|
deployJar.targetDir=/home/alemi/.local/share/PrismLauncher/instances/bscv/.minecraft/mods/
|