Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.hibernate.javax.persistence</groupId>
  3. <artifactId>hibernate-jpa-2.0-api</artifactId>
  4. </dependency>
  5.  
  6. </dependencies>
  7.  
  8. <dependencyManagement>
  9. <dependencies>
  10.  
  11. <dependency>
  12. <groupId>org.hibernate.javax.persistence</groupId>
  13. <artifactId>hibernate-jpa-2.0-api</artifactId>
  14. <version>1.0.1.Final</version>
  15. </dependency>
  16.  
  17.  
  18. <dependency>
  19. <groupId>com.solveit.crm.core</groupId>
  20. <artifactId>crm-core</artifactId>
  21. <version>${project.version}</version>
  22. </dependency> //this dependency is for another module, it was
  23. declared at the start of the project
  24.  
  25.  
  26. </dependencies>
  27. </dependencyManagement>
  28.  
  29. <dependencies>
  30.  
  31. <dependency>
  32. <groupId>org.hibernate.javax.persistence</groupId>
  33. <artifactId>hibernate-jpa-2.0-api</artifactId>
  34. </dependency>
  35.  
  36. <dependency>
  37. <groupId>com.solveit.crm.data</groupId>
  38. <artifactId>crm-data</artifactId>
  39. </dependency>
  40.  
  41. </dependencies>
  42.  
  43. <dependencyManagement>
  44. <dependencies>
  45.  
  46. <dependency>
  47. <groupId>org.hibernate.javax.persistence</groupId>
  48. <artifactId>hibernate-jpa-2.0-api</artifactId>
  49. <version>1.0.1.Final</version>
  50. </dependency>
  51.  
  52.  
  53. <dependency>
  54. <groupId>com.solveit.crm.core</groupId>
  55. <artifactId>crm-core</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58.  
  59. <dependency>
  60. <groupId>com.solveit.crm.data</groupId>
  61. <artifactId>crm-data</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64.  
  65. </dependencies>
  66. </dependencyManagement>
  67.  
  68. [INFO] Scanning for projects...
  69. [ERROR] Internal error: java.lang.NullPointerException -> [Help 1]
  70. org.apache.maven.InternalErrorException: Internal error: java.lang.NullPointerEx
  71. ception
  72. at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:167)
  73. at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)
  74. at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:213)
  75. at org.apache.maven.cli.MavenCli.main(MavenCli.java:157)
  76. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  77. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
  78. java:62)
  79. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
  80. sorImpl.java:43)
  81. at java.lang.reflect.Method.invoke(Method.java:483)
  82. at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
  83. cher.java:289)
  84. at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
  85. a:229)
  86. at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
  87. uncher.java:415)
  88. at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
  89. 356)
  90. Caused by: java.lang.NullPointerException
  91. at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:270)
  92. at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)
  93. ... 11 more
  94. [ERROR]
  95. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
  96. ch.
  97. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  98. [ERROR]
  99. [ERROR] For more information about the errors and possible solutions, please rea
  100. d the following articles:
  101. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/InternalErrorE
  102. xception
  103.  
  104. [INFO] Scanning for projects...
  105. [ERROR] The projects in the reactor contain a cyclic reference: Edge between 'Vertex{label='com.solveit.crm.data:crm-data:1'}' and 'Vertex{label='com.solveit.crm.core:crm-core:1'}' introduces to cycle in the graph com.solveit.crm.core:crm-core:1 --> com.solveit.crm.data:crm-data:1 --> com.solveit.crm.core:crm-core:1 -> [Help 1]
  106. [ERROR]
  107. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  108. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  109. [ERROR]
  110. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  111. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectCycleException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement