Advertisement
Guest User

Untitled

a guest
Jul 18th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. # java -version Mon Jul 18 11:19:20 2016
  2. java version "1.8.0_77"
  3. Java(TM) SE Runtime Environment (build 1.8.0_77-b03)
  4. Java HotSpot(TM) 64-Bit Server VM (build 25.77-b03, mixed mode)
  5.  
  6.  
  7. # mvn -version Mon Jul 18 11:19:55 2016
  8. Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T13:41:47-03:00)
  9. Maven home: /usr/local/Cellar/maven/3.3.9/libexec
  10. Java version: 1.8.0_77, vendor: Oracle Corporation
  11. Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_77.jdk/Contents/Home/jre
  12. Default locale: en_US, platform encoding: UTF-8
  13. OS name: "mac os x", version: "10.11.5", arch: "x86_64", family: "mac"
  14.  
  15.  
  16. # mvn exec:java -Dexec.mainClass="ar.uba.fi.fallas.App" Mon Jul 18 11:19:59 2016
  17. [INFO] Scanning for projects...
  18. [INFO]
  19. [INFO] ------------------------------------------------------------------------
  20. [INFO] Building fallas 1.0-SNAPSHOT
  21. [INFO] ------------------------------------------------------------------------
  22. [INFO]
  23. [INFO] --- exec-maven-plugin:1.5.0:java (default-cli) @ fallas ---
  24. [WARNING]
  25. java.lang.reflect.InvocationTargetException
  26. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  27. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  28. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  29. at java.lang.reflect.Method.invoke(Method.java:498)
  30. at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:294)
  31. at java.lang.Thread.run(Thread.java:745)
  32. Caused by: java.lang.NoClassDefFoundError: org/jboss/weld/security/GetSystemPropertyAction
  33. at org.jboss.weld.environment.se.Weld.isEnabled(Weld.java:904)
  34. at org.jboss.weld.environment.se.Weld.initialize(Weld.java:565)
  35. at ar.uba.fi.fallas.App.main(App.java:31)
  36. ... 6 more
  37. Caused by: java.lang.ClassNotFoundException: org.jboss.weld.security.GetSystemPropertyAction
  38. at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
  39. at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
  40. at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
  41. ... 9 more
  42. [INFO] ------------------------------------------------------------------------
  43. [INFO] BUILD FAILURE
  44. [INFO] ------------------------------------------------------------------------
  45. [INFO] Total time: 2.331 s
  46. [INFO] Finished at: 2016-07-18T11:20:15-03:00
  47. [INFO] Final Memory: 14M/309M
  48. [INFO] ------------------------------------------------------------------------
  49. [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (default-cli) on project fallas: An exception occured while executing the Java class. null: InvocationTargetException: org/jboss/weld/security/GetSystemPropertyAction: org.jboss.weld.security.GetSystemPropertyAction -> [Help 1]
  50. [ERROR]
  51. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  52. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  53. [ERROR]
  54. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  55. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement