<define alias for gradle task with custom argument...
# stackoverflow
u
define alias for gradle task with custom argument I want to run ./gradlew extractMyDeps instead of ./gradlew appdependencies --configuration productionDebugRuntimeClasspath but I can't pass args to this task via dependOn How to achieve my goal? task("extractMyDeps") { dependsOn("appdependencies") // how pass --configuration }