<@U0V6V0YSY>: there’s nothing builtin, what I usua...
# announcements
b
@michaelvaughan: there’s nothing builtin, what I usually do is to dump the runtime classpath of the sourceset I’m interested in to a text file so I can use it on the shell:
Copy code
task dumpTestRuntimeClasspath {
  doFirst {
    file("$buildDir/classpath.txt").text = sourceSets.test.runtimeClasspath.asPath
  }
}
and then:
Copy code
./gradlew dTRC && java -cp $(cat build/classpath.txt) the.repl.main.class
metal 2