Advertisement
Guest User

Untitled

a guest
Jun 20th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.48 KB | None | 0 0
  1. [INFO] Scanning for projects...
  2. [INFO] ------------------------------------------------------------------------
  3. [INFO] Reactor Build Order:
  4. [INFO]
  5. [INFO] Metadata Repository
  6. [INFO] Metadata Repository - Core
  7. [INFO] Metadata Repository - Web (Spring MVC)
  8. [INFO]
  9. [INFO] ------------------------------------------------------------------------
  10. [INFO] Building Metadata Repository 1.0-SNAPSHOT
  11. [INFO] ------------------------------------------------------------------------
  12. [INFO]
  13. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository ---
  14. [INFO]
  15. [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadatarepository ---
  16. [INFO] Installing /Users/pamusriharsha/metadatarepository/pom.xml to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadatarepository/1.0-SNAPSHOT/metadatarepository-1.0-SNAPSHOT.pom
  17. [INFO]
  18. [INFO] ------------------------------------------------------------------------
  19. [INFO] Building Metadata Repository - Core 1.0-SNAPSHOT
  20. [INFO] ------------------------------------------------------------------------
  21. [INFO]
  22. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository-core ---
  23. [INFO] Deleting /Users/pamusriharsha/metadatarepository/core/target
  24. [INFO]
  25. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-core ---
  26. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  27. [INFO] Copying 8 resources
  28. [INFO]
  29. [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadatarepository-core ---
  30. [INFO] Compiling 38 source files to /Users/pamusriharsha/metadatarepository/core/target/classes
  31. [INFO]
  32. [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadatarepository-core ---
  33. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  34. [INFO] Copying 13 resources
  35. [INFO]
  36. [INFO] >>> hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core >>>
  37. [INFO]
  38. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-core ---
  39. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  40. [INFO] Copying 8 resources
  41. [INFO]
  42. [INFO] <<< hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core <<<
  43. [INFO]
  44. [INFO] --- hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core ---
  45. [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/metadatarepository/core/src/main/resources/hibernate.cfg.xml
  46. [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/metadatarepository/core/src/main/resources/hibernate.cfg.xml
  47. [INFO] Configuration Properties file loaded: /Users/pamusriharsha/metadatarepository/core/target/test-classes/jdbc.properties
  48. alter table package drop foreign key FKCFE53446179E514B;
  49. alter table user_role drop foreign key FK143BF46A72738D6B;
  50. alter table user_role drop foreign key FK143BF46A179E514B;
  51. drop table if exists app_user;
  52. drop table if exists package;
  53. drop table if exists role;
  54. drop table if exists user_role;
  55. create table app_user (id bigint not null auto_increment, account_expired bit not null, account_locked bit not null, address varchar(150), city varchar(50), country varchar(100), postal_code varchar(15), province varchar(100), credentials_expired bit not null, email varchar(255) not null unique, account_enabled bit, first_name varchar(50) not null, last_name varchar(50) not null, password varchar(255) not null, password_hint varchar(255), phone_number varchar(255), username varchar(50) not null unique, version integer, website varchar(255), primary key (id)) ENGINE=InnoDB;
  56. create table package (id bigint not null auto_increment, description varchar(255), name varchar(50), version bigint, user_id bigint, primary key (id)) ENGINE=InnoDB;
  57. create table role (id bigint not null auto_increment, description varchar(64), name varchar(20), primary key (id)) ENGINE=InnoDB;
  58. create table user_role (user_id bigint not null, role_id bigint not null, primary key (user_id, role_id)) ENGINE=InnoDB;
  59. alter table package add index FKCFE53446179E514B (user_id), add constraint FKCFE53446179E514B foreign key (user_id) references app_user (id);
  60. alter table user_role add index FK143BF46A72738D6B (role_id), add constraint FK143BF46A72738D6B foreign key (role_id) references role (id);
  61. alter table user_role add index FK143BF46A179E514B (user_id), add constraint FK143BF46A179E514B foreign key (user_id) references app_user (id);
  62. [INFO]
  63. [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadatarepository-core ---
  64. [INFO] Not compiling test sources
  65. [INFO]
  66. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadatarepository-core ---
  67. 325 [main] INFO org.dbunit.database.DatabaseDataSet -
  68. database name=MySQL
  69. database version=5.5.21
  70. database major version=5
  71. database minor version=5
  72. jdbc driver name=MySQL-AB JDBC Driver
  73. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  74. jdbc driver major version=5
  75. jdbc driver minor version=1
  76.  
  77. [INFO]
  78. [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadatarepository-core ---
  79. [INFO] Tests are skipped.
  80. [INFO]
  81. [INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ metadatarepository-core ---
  82. [INFO] Building jar: /Users/pamusriharsha/metadatarepository/core/target/metadatarepository-core-1.0-SNAPSHOT.jar
  83. [INFO]
  84. [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadatarepository-core ---
  85. [INFO] Installing /Users/pamusriharsha/metadatarepository/core/target/metadatarepository-core-1.0-SNAPSHOT.jar to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadatarepository-core/1.0-SNAPSHOT/metadatarepository-core-1.0-SNAPSHOT.jar
  86. [INFO] Installing /Users/pamusriharsha/metadatarepository/core/pom.xml to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadatarepository-core/1.0-SNAPSHOT/metadatarepository-core-1.0-SNAPSHOT.pom
  87. [INFO]
  88. [INFO] ------------------------------------------------------------------------
  89. [INFO] Building Metadata Repository - Web (Spring MVC) 1.0-SNAPSHOT
  90. [INFO] ------------------------------------------------------------------------
  91. [INFO]
  92. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository-web ---
  93. [INFO] Deleting /Users/pamusriharsha/metadatarepository/web/target
  94. [INFO]
  95. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-web ---
  96. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  97. [INFO] Copying 34 resources
  98. [INFO]
  99. [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadatarepository-web ---
  100. [INFO] Compiling 24 source files to /Users/pamusriharsha/metadatarepository/web/target/classes
  101. [INFO]
  102. [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadatarepository-web ---
  103. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  104. [INFO] Copying 4 resources
  105. [INFO] Copying 15 resources
  106. [INFO]
  107. [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadatarepository-web ---
  108. [INFO] Not compiling test sources
  109. [INFO]
  110. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadatarepository-web ---
  111. 10616 [main] INFO org.dbunit.database.DatabaseDataSet -
  112. database name=MySQL
  113. database version=5.5.21
  114. database major version=5
  115. database minor version=5
  116. jdbc driver name=MySQL-AB JDBC Driver
  117. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  118. jdbc driver major version=5
  119. jdbc driver minor version=1
  120.  
  121. [INFO]
  122. [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadatarepository-web ---
  123. [INFO] Tests are skipped.
  124. [INFO]
  125. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test) @ metadatarepository-web ---
  126. 11540 [main] INFO org.dbunit.database.DatabaseDataSet -
  127. database name=MySQL
  128. database version=5.5.21
  129. database major version=5
  130. database minor version=5
  131. jdbc driver name=MySQL-AB JDBC Driver
  132. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  133. jdbc driver major version=5
  134. jdbc driver minor version=1
  135.  
  136. [INFO]
  137. [INFO] --- maven-war-plugin:2.1.1:war (default-war) @ metadatarepository-web ---
  138. [INFO] Packaging webapp
  139. [INFO] Assembling webapp [metadatarepository-web] in [/Users/pamusriharsha/metadatarepository/web/target/metadatarepository-web-1.0-SNAPSHOT]
  140. [INFO] Processing war project
  141. [INFO] Copying webapp resources [/Users/pamusriharsha/metadatarepository/web/src/main/webapp]
  142. [INFO] Webapp assembled in [16418 msecs]
  143. [INFO] Building war: /Users/pamusriharsha/metadatarepository/web/target/metadatarepository-web-1.0-SNAPSHOT.war
  144. [INFO] WEB-INF/web.xml already added, skipping
  145. [INFO]
  146. [INFO] --- cargo-maven2-plugin:1.0.6:start (start-container) @ metadatarepository-web ---
  147. [INFO] ------------------------------------------------------------------------
  148. [INFO] Reactor Summary:
  149. [INFO]
  150. [INFO] Metadata Repository ............................... SUCCESS [0.986s]
  151. [INFO] Metadata Repository - Core ........................ SUCCESS [17.419s]
  152. [INFO] Metadata Repository - Web (Spring MVC) ............ FAILURE [57.739s]
  153. [INFO] ------------------------------------------------------------------------
  154. [INFO] BUILD FAILURE
  155. [INFO] ------------------------------------------------------------------------
  156. [INFO] Total time: 1:16.965s
  157. [INFO] Finished at: Wed Jun 20 12:24:53 GMT+05:30 2012
  158. [INFO] Final Memory: 23M/81M
  159. [INFO] ------------------------------------------------------------------------
  160. [ERROR] Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.0.6:start (start-container) on project metadatarepository-web: Execution start-container of goal org.codehaus.cargo:cargo-maven2-plugin:1.0.6:start failed: Error while expanding /var/folders/B6/B6U+Y8tQHe4L7tfISFWpV++++TI/-Tmp-/cargo/installs/apache-tomcat-6.0.29.zip
  161. [ERROR] java.io.IOException: Negative seek offset
  162. [ERROR] -> [Help 1]
  163. [ERROR]
  164. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  165. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  166. [ERROR]
  167. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  168. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException
  169. [ERROR]
  170. [ERROR] After correcting the problems, you can resume the build with the command
  171. [ERROR] mvn <goals> -rf :metadatarepository-web
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement