libgdx / gdx-liftoff

A modern setup tool for libGDX Gradle projects
Apache License 2.0
524 stars 48 forks source link

lwjgl3:dist task broken #147

Closed lyze237 closed 8 months ago

lyze237 commented 8 months ago

Hey!

Seems like the lwjgl3:disk tasks doesn't do anything.

Updating it to:

task dist {
  dependsOn 'jar'
}

seems to work.

tommyettinger commented 8 months ago

I'll try it out!

tommyettinger commented 8 months ago

This seems to be fixed now; I had been giving dependsOn a list of String instead of a single String, and it seems to need just the one String. I will keep using tasks.register() because Gradle seems to prefer that for performance reasons, and it doesn't seem to break lwjgl3:dist. Thanks!