./gradlew --stop
./gradlew -q dependencies > deps.txt
gradle test --tests HealthCheckSpecTest
plugins {
maven-publish
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = groupId
artifactId = artifactId
version = version
from(components["java"])
}
}
}Add into the project root file gradle.properties with next content:
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m
./gradlew clean build --rerun-tasks
https://stackoverflow.com/questions/23805915/run-parallel-test-task-using-gradle
test {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}
./gradlew wrapper --gradle-version 8.5
gradle wrapper --gradle-version 8.5
https://docs.gradle.org/current/userguide/compatibility.html
git update-index --chmod=+x gradlew