What I do when I need the classfiles on disk is — ...
# announcements
j
What I do when I need the classfiles on disk is — surely hackish — to run some Kotlin code in Eclipse to force the compiler to spit out the binaries to the disk. Most often, just a simple testcase:
Copy code
class Null {
	@org.junit.Test
	fun test() { }
}