Closed renatoathaydes closed 5 years ago
Since there has been no interest from the maintainer of this project to continue doing it, I will try to continue the project via my fork: https://github.com/renatoathaydes/teavm-gradle-plugin
I invite others to collaborate on that fork.
In the latest Gradle versions, looks like they changed the location where the class files and resources are put...
This plugin was looking for them in
classes/main
, whereas Gradle now puts them inclasses/java/main
orclasses/kotlin/main
etc...A more reliable way to find the project's class files is by using
project.configurations.name.allArtifacts
which is what I've done.I also cleaned up some small issues with the current code which I hope you will agree make it more readable and generally better.