Advertisement
Guest User

Untitled

a guest
May 30th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. [INFO] Scanning for projects...
  2. [INFO]
  3. [INFO] ------------------------------------------------------------------------
  4. [INFO] Building apt-bug 0.0.1-SNAPSHOT
  5. [INFO] ------------------------------------------------------------------------
  6. [INFO]
  7. [INFO] --- maven-apt-plugin:1.0.2:process (querydsl-apt) @ apt-bug ---
  8. /home/xxx/apt-bug/src/main/java/something/UserStore.java:3: cannot find symbol
  9. symbol : class QUser
  10. location: package something
  11. import static something.QUser.user;
  12. ^
  13. /home/xxx/apt-bug/src/main/java/something/UserStore.java:3: static import only from classes and interfaces
  14. import static something.QUser.user;
  15. ^
  16. [INFO]
  17. [INFO] --- build-helper-maven-plugin:1.7:add-source (add-source) @ apt-bug ---
  18. [INFO] Source directory: /home/xxx/apt-bug/target/generated-sources added.
  19. [INFO]
  20. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ apt-bug ---
  21. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
  22. [INFO] Copying 0 resource
  23. [INFO]
  24. [INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ apt-bug ---
  25. [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
  26. [INFO] Compiling 1 source file to /home/xxx/apt-bug/target/classes
  27. [INFO]
  28. [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ apt-bug ---
  29. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
  30. [INFO] Copying 0 resource
  31. [INFO]
  32. [INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ apt-bug ---
  33. [INFO] Nothing to compile - all classes are up to date
  34. [INFO]
  35. [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ apt-bug ---
  36. [INFO] Surefire report directory: /home/xxx/apt-bug/target/surefire-reports
  37.  
  38. -------------------------------------------------------
  39. T E S T S
  40. -------------------------------------------------------
  41. Running something.UserStoreTest
  42. Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.083 sec <<< FAILURE!
  43.  
  44. Results :
  45.  
  46. Tests in error:
  47. test(something.UserStoreTest)
  48.  
  49. Tests run: 1, Failures: 0, Errors: 1, Skipped: 0
  50.  
  51. [INFO] ------------------------------------------------------------------------
  52. [INFO] BUILD FAILURE
  53. [INFO] ------------------------------------------------------------------------
  54. [INFO] Total time: 4.895s
  55. [INFO] Finished at: Wed May 30 16:47:17 CEST 2012
  56. [INFO] Final Memory: 22M/212M
  57. [INFO] ------------------------------------------------------------------------
  58. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) on project apt-bug: There are test failures.
  59. [ERROR]
  60. [ERROR] Please refer to /home/xxx/apt-bug/target/surefire-reports for the individual test results.
  61. [ERROR] -> [Help 1]
  62. [ERROR]
  63. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  64. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  65. [ERROR]
  66. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  67. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement