Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. $ ./gradlew clean run
  2.  
  3. > Configure project :
  4. getVersion: 1.3.393
  5.  
  6. > Task :clean UP-TO-DATE
  7. > Task :compileJava NO-SOURCE
  8. > Task :compileGroovy
  9. > Task :processResources
  10. > Task :version
  11. > Task :classes
  12. > Task :run FAILED
  13.  
  14. FAILURE: Build failed with an exception.
  15.  
  16. * What went wrong:
  17. Execution failed for task ':run'.
  18. > A problem occurred starting process 'command 'C:Program FilesJavajdk1.8.0_191binjava.exe''
  19.  
  20. * Try:
  21. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
  22.  
  23. * Get more help at https://help.gradle.org
  24.  
  25. Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
  26. Use '--warning-mode all' to show the individual deprecation warnings.
  27. See https://docs.gradle.org/4.9/userguide/command_line_interface.html#sec:command_line_warnings
  28.  
  29. BUILD FAILED in 19s
  30. 5 actionable tasks: 4 executed, 1 up-to-date
  31.  
  32. buildscript {
  33. repositories {
  34. maven {url "https://nexus.cloud.aws.tenablesecurity.com/content/groups/tenable-cloud/"}
  35. }
  36.  
  37. dependencies {
  38. classpath('com.tenable.service:cloudiron-plugin:2.1.0-SNAPSHOT')
  39. }
  40. }
  41.  
  42. plugins {
  43. id 'groovy'
  44. id 'java'
  45. id 'maven'
  46. id 'application'
  47. id 'jacoco'
  48. }
  49.  
  50. group 'com.tenable.service'
  51. sourceCompatibility = 1.8
  52. mainClassName = 'com.tenable.service.ServiceMain'
  53.  
  54. repositories {
  55. mavenLocal()
  56. maven {url "https://nexus.cloud.aws.tenablesecurity.com/content/groups/tenable-cloud/"}
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement