Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. $ gradle build
  2.  
  3. :compileJava UP-TO-DATE
  4. :compileScala FAILED
  5.  
  6. FAILURE: Build failed with an exception.
  7.  
  8. * What went wrong:
  9. A problem was found with the configuration of task ':compileScala'.
  10. > No value has been specified for property 'zincClasspath'.
  11.  
  12. version = 0.1
  13.  
  14. apply plugin: 'scala'
  15.  
  16. repositories {
  17. mavenCentral()
  18. }
  19.  
  20. dependencies {
  21. compile 'org.scala-lang:scala-library:2.11.8'
  22. }
  23.  
  24. $ gradle -version
  25.  
  26. ------------------------------------------------------------
  27. Gradle 3.2.1
  28. ------------------------------------------------------------
  29.  
  30. Build time: 2012-12-21 00:00:00 UTC
  31. Revision: none
  32.  
  33. Groovy: 2.4.8
  34. Ant: Apache Ant(TM) version 1.9.9 compiled on March 1 2017
  35. JVM: 1.8.0_121 (Oracle Corporation 25.121-b13)
  36. OS: Linux 4.8.0-1-amd64 amd64
  37.  
  38. $ uname -a
  39.  
  40. Linux front 4.8.0-1-amd64 #1 SMP Debian 4.8.5-1 (2016-10-28) x86_64 GNU/Linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement