Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Could not get unknown property 'classesDir' for main classes of type org.gradle.api.internal.tasks.DefaultSourceSetOutput.
  2. Open File
  3.  
  4. task dist(type: Jar) {
  5. from files(sourceSets.main.output.classesDir)
  6. from files(sourceSets.main.output.resourcesDir)
  7. from {configurations.compile.collect {zipTree(it)}}
  8. from files(project.assetsDir);
  9.  
  10. manifest {
  11. attributes 'Main-Class': project.mainClassName
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement