Guest User

Untitled

a guest
Jun 4th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.28 KB | None | 0 0
  1. [INFO] Scanning for projects...
  2. [INFO] ------------------------------------------------------------------------
  3. [INFO] Reactor Build Order:
  4. [INFO]
  5. [INFO] Metadata Server
  6. [INFO] Metadata Server - Core
  7. [INFO] Metadata Server - Web (Spring MVC)
  8. [INFO]
  9. [INFO] ------------------------------------------------------------------------
  10. [INFO] Building Metadata Server 1.0-SNAPSHOT
  11. [INFO] ------------------------------------------------------------------------
  12. [INFO]
  13. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadataserver ---
  14. [INFO] Deleting /Users/pamusriharsha/openmrs-contrib-metadataserver/target
  15. [INFO]
  16. [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadataserver ---
  17. [INFO] Installing /Users/pamusriharsha/openmrs-contrib-metadataserver/pom.xml to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadataserver/1.0-SNAPSHOT/metadataserver-1.0-SNAPSHOT.pom
  18. [INFO]
  19. [INFO] ------------------------------------------------------------------------
  20. [INFO] Building Metadata Server - Core 1.0-SNAPSHOT
  21. [INFO] ------------------------------------------------------------------------
  22. [INFO]
  23. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadataserver-core ---
  24. [INFO] Deleting /Users/pamusriharsha/openmrs-contrib-metadataserver/core/target
  25. [INFO]
  26. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadataserver-core ---
  27. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  28. [INFO] Copying 8 resources
  29. [INFO]
  30. [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadataserver-core ---
  31. [INFO] Compiling 37 source files to /Users/pamusriharsha/openmrs-contrib-metadataserver/core/target/classes
  32. [INFO]
  33. [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadataserver-core ---
  34. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  35. [INFO] Copying 12 resources
  36. [INFO]
  37. [INFO] >>> hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadataserver-core >>>
  38. [INFO]
  39. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadataserver-core ---
  40. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  41. [INFO] Copying 8 resources
  42. [INFO]
  43. [INFO] <<< hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadataserver-core <<<
  44. [INFO]
  45. [INFO] --- hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadataserver-core ---
  46. [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/openmrs-contrib-metadataserver/core/src/main/resources/hibernate.cfg.xml
  47. [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/openmrs-contrib-metadataserver/core/src/main/resources/hibernate.cfg.xml
  48. [INFO] Configuration Properties file loaded: /Users/pamusriharsha/openmrs-contrib-metadataserver/core/target/test-classes/jdbc.properties
  49. alter table user_role drop foreign key FK143BF46A415428C8;
  50. alter table user_role drop foreign key FK143BF46AE67EECA8;
  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, 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 user_role add index FK143BF46A415428C8 (role_id), add constraint FK143BF46A415428C8 foreign key (role_id) references role (id);
  60. alter table user_role add index FK143BF46AE67EECA8 (user_id), add constraint FK143BF46AE67EECA8 foreign key (user_id) references app_user (id);
  61. [INFO]
  62. [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadataserver-core ---
  63. [INFO] Not compiling test sources
  64. [INFO]
  65. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadataserver-core ---
  66. 236 [main] INFO org.dbunit.database.DatabaseDataSet -
  67. database name=MySQL
  68. database version=5.5.21
  69. database major version=5
  70. database minor version=5
  71. jdbc driver name=MySQL-AB JDBC Driver
  72. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  73. jdbc driver major version=5
  74. jdbc driver minor version=1
  75.  
  76. [INFO]
  77. [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadataserver-core ---
  78. [INFO] Tests are skipped.
  79. [INFO]
  80. [INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ metadataserver-core ---
  81. [INFO] Building jar: /Users/pamusriharsha/openmrs-contrib-metadataserver/core/target/metadataserver-core-1.0-SNAPSHOT.jar
  82. [INFO]
  83. [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadataserver-core ---
  84. [INFO] Installing /Users/pamusriharsha/openmrs-contrib-metadataserver/core/target/metadataserver-core-1.0-SNAPSHOT.jar to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadataserver-core/1.0-SNAPSHOT/metadataserver-core-1.0-SNAPSHOT.jar
  85. [INFO] Installing /Users/pamusriharsha/openmrs-contrib-metadataserver/core/pom.xml to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadataserver-core/1.0-SNAPSHOT/metadataserver-core-1.0-SNAPSHOT.pom
  86. [INFO]
  87. [INFO] ------------------------------------------------------------------------
  88. [INFO] Building Metadata Server - Web (Spring MVC) 1.0-SNAPSHOT
  89. [INFO] ------------------------------------------------------------------------
  90. [INFO]
  91. [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadataserver-web ---
  92. [INFO] Deleting /Users/pamusriharsha/openmrs-contrib-metadataserver/web/target
  93. [INFO]
  94. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadataserver-web ---
  95. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  96. [INFO] Copying 33 resources
  97. [INFO]
  98. [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadataserver-web ---
  99. [INFO] Compiling 24 source files to /Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/classes
  100. [INFO]
  101. [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadataserver-web ---
  102. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  103. [INFO] Copying 4 resources
  104. [INFO] Copying 15 resources
  105. [INFO]
  106. [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadataserver-web ---
  107. [INFO] Not compiling test sources
  108. [INFO]
  109. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadataserver-web ---
  110. 7442 [main] INFO org.dbunit.database.DatabaseDataSet -
  111. database name=MySQL
  112. database version=5.5.21
  113. database major version=5
  114. database minor version=5
  115. jdbc driver name=MySQL-AB JDBC Driver
  116. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  117. jdbc driver major version=5
  118. jdbc driver minor version=1
  119.  
  120. [INFO]
  121. [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadataserver-web ---
  122. [INFO] Tests are skipped.
  123. [INFO]
  124. [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test) @ metadataserver-web ---
  125. 7616 [main] INFO org.dbunit.database.DatabaseDataSet -
  126. database name=MySQL
  127. database version=5.5.21
  128. database major version=5
  129. database minor version=5
  130. jdbc driver name=MySQL-AB JDBC Driver
  131. jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
  132. jdbc driver major version=5
  133. jdbc driver minor version=1
  134.  
  135. [INFO]
  136. [INFO] --- maven-war-plugin:2.1.1:war (default-war) @ metadataserver-web ---
  137. [INFO] Packaging webapp
  138. [INFO] Assembling webapp [metadataserver-web] in [/Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/metadataserver-web-1.0-SNAPSHOT]
  139. [INFO] Processing war project
  140. [INFO] Copying webapp resources [/Users/pamusriharsha/openmrs-contrib-metadataserver/web/src/main/webapp]
  141. [INFO] Webapp assembled in [4257 msecs]
  142. [INFO] Building war: /Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/metadataserver-web-1.0-SNAPSHOT.war
  143. [INFO] WEB-INF/web.xml already added, skipping
  144. [INFO]
  145. [INFO] --- cargo-maven2-plugin:1.0.6:start (start-container) @ metadataserver-web ---
  146. [INFO] [stalledLocalDeployer] Deploying [/Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/metadataserver-web-1.0-SNAPSHOT.war] to [/Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/tomcat6x/container/webapps]...
  147. [INFO] [talledLocalContainer] Tomcat 6.x starting...
  148. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:53 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
  149. [WARNING] [talledLocalContainer] WARNING: [SetPropertiesRule]{Server} Setting property 'debug' to '2' did not find a matching property.
  150. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:54 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
  151. [WARNING] [talledLocalContainer] WARNING: [SetPropertiesRule]{Server/Service} Setting property 'debug' to '2' did not find a matching property.
  152. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:54 PM org.apache.catalina.core.AprLifecycleListener init
  153. [WARNING] [talledLocalContainer] INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
  154. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:54 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
  155. [WARNING] [talledLocalContainer] WARNING: [SetPropertiesRule]{Server/Service/Engine} Setting property 'debug' to '2' did not find a matching property.
  156. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:54 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
  157. [WARNING] [talledLocalContainer] WARNING: [SetPropertiesRule]{Server/Service/Engine/Host} Setting property 'debug' to '2' did not find a matching property.
  158. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:54 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
  159. [WARNING] [talledLocalContainer] WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '2' did not find a matching property.
  160. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:55 PM org.apache.coyote.http11.Http11Protocol init
  161. [WARNING] [talledLocalContainer] INFO: Initializing Coyote HTTP/1.1 on http-8081
  162. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:55 PM org.apache.catalina.startup.Catalina load
  163. [WARNING] [talledLocalContainer] INFO: Initialization processed in 1383 ms
  164. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:55 PM org.apache.catalina.core.StandardService start
  165. [WARNING] [talledLocalContainer] INFO: Starting service Catalina
  166. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:55 PM org.apache.catalina.core.StandardEngine start
  167. [WARNING] [talledLocalContainer] INFO: Starting Servlet Engine: Apache Tomcat/6.0.29
  168. [WARNING] [talledLocalContainer] Jun 4, 2012 3:11:58 PM org.apache.catalina.core.ApplicationContext log
  169. [WARNING] [talledLocalContainer] INFO: Initializing Spring root WebApplicationContext
  170. [INFO] [talledLocalContainer] WARN [main] DTDEntityResolver.resolveEntity(73) | recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
  171. [INFO] [talledLocalContainer] DEBUG [main] StartupListener.contextInitialized(55) | Initializing context...
  172. [INFO] [talledLocalContainer] DEBUG [main] StartupListener.contextInitialized(100) | Remember Me Enabled? true
  173. [INFO] [talledLocalContainer] DEBUG [main] StartupListener.contextInitialized(102) | Password Encoder: ShaPasswordEncoder
  174. [INFO] [talledLocalContainer] DEBUG [main] StartupListener.contextInitialized(104) | Populating drop-downs...
  175. [INFO] [talledLocalContainer] DEBUG [main] LookupDaoHibernate.getRoles(52) | Retrieving all role names...
  176. [INFO] [talledLocalContainer] DEBUG [main] StartupListener.setupContext(121) | Drop-down initialization complete [OK]
  177. [INFO] [talledLocalContainer] DEBUG [main] LocaleFilter.init(157) | Initializing filter 'localeFilter'
  178. [INFO] [talledLocalContainer] DEBUG [main] LocaleFilter.init(182) | Filter 'localeFilter' configured successfully
  179. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:27 PM org.apache.catalina.core.ApplicationContext log
  180. [WARNING] [talledLocalContainer] INFO: Initializing Spring FrameworkServlet 'dispatcher'
  181. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:31 PM org.apache.catalina.startup.HostConfig deployWAR
  182. [WARNING] [talledLocalContainer] INFO: Deploying web application archive cargocpc.war
  183. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:31 PM org.apache.catalina.startup.HostConfig deployDirectory
  184. [WARNING] [talledLocalContainer] INFO: Deploying web application directory host-manager
  185. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:31 PM org.apache.catalina.startup.HostConfig deployDirectory
  186. [WARNING] [talledLocalContainer] INFO: Deploying web application directory manager
  187. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:32 PM org.apache.coyote.http11.Http11Protocol start
  188. [WARNING] [talledLocalContainer] INFO: Starting Coyote HTTP/1.1 on http-8081
  189. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:32 PM org.apache.jk.common.ChannelSocket init
  190. [WARNING] [talledLocalContainer] INFO: JK: ajp13 listening on /0.0.0.0:8009
  191. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:32 PM org.apache.jk.server.JkMain start
  192. [WARNING] [talledLocalContainer] INFO: Jk running ID=0 time=0/136 config=null
  193. [WARNING] [talledLocalContainer] Jun 4, 2012 3:12:32 PM org.apache.catalina.startup.Catalina start
  194. [WARNING] [talledLocalContainer] INFO: Server startup in 37436 ms
  195. [INFO] [talledLocalContainer] Tomcat 6.x started on port [8081]
  196. [INFO]
  197. [INFO] --- maven-antrun-plugin:1.3:run (default) @ metadataserver-web ---
  198. [INFO] Executing tasks
  199. Trying to override old definition of task retry
  200. [mkdir] Created dir: /Users/pamusriharsha/openmrs-contrib-metadataserver/web/target/webtest-data
  201. [echo] Testing 'metadataserver-web-1.0-SNAPSHOT' with locale 'en'
  202.  
  203. Login:
  204.  
  205. Logout:
  206.  
  207. PasswordHint:
  208. [INFO] [talledLocalContainer] DEBUG [http-8081-3] PasswordHintController.handleRequest(76) | entering 'handleRequest' method...
  209. [INFO] [talledLocalContainer] DEBUG [http-8081-3] PasswordHintController.handleRequest(88) | Processing Password Hint...
  210. [INFO] [talledLocalContainer] ERROR [http-8081-3] MailEngine.send(92) | Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused). Failed messages: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused)
  211. [INFO] [talledLocalContainer] WARN [http-8081-3] PasswordHintController.handleRequest(110) | Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused). Failed messages: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused)
  212.  
  213. Signup:
  214. [INFO] [talledLocalContainer] WARN [http-8081-4] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  215. [INFO] [talledLocalContainer] DEBUG [http-8081-4] SignupController.onSubmit(72) | entering 'onSubmit' method...
  216. [INFO] [talledLocalContainer] DEBUG [http-8081-4] UserSecurityAdvice.before(113) | Registering new user 'signup-user'
  217. [INFO] [talledLocalContainer] DEBUG [http-8081-4] UserDaoHibernate.saveUser(63) | user's id: null
  218. [INFO] [talledLocalContainer] DEBUG [http-8081-4] SignupController.onSubmit(108) | Sending user 'signup-user' an account information e-mail
  219. [INFO] [talledLocalContainer] DEBUG [http-8081-4] SignupController.sendUserMessage(191) | sending e-mail to user [signup-user@raibledesigns.com]...
  220. [INFO] [talledLocalContainer] ERROR [http-8081-4] MailEngine.send(92) | Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused). Failed messages: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused)
  221.  
  222. EditUser:
  223. [INFO] [talledLocalContainer] DEBUG [http-8081-5] UserFormController.showForm(179) | checking for remember me login...
  224. [INFO] [talledLocalContainer] WARN [http-8081-5] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  225.  
  226. SearchUser:
  227. [INFO] [talledLocalContainer] DEBUG [http-8081-6] UserManagerImpl.search(139) | Filtering by type: org.openmrs.contrib.model.User
  228. [INFO] [talledLocalContainer] DEBUG [http-8081-6] UserManagerImpl.search(153) | Number of results for 'matt_raible': 1
  229.  
  230. SaveUser:
  231. [INFO] [talledLocalContainer] DEBUG [http-8081-2] UserFormController.showForm(179) | checking for remember me login...
  232. [INFO] [talledLocalContainer] WARN [http-8081-2] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  233. [INFO] [talledLocalContainer] DEBUG [http-8081-2] UserFormController.onSubmit(86) | entering 'onSubmit' method...
  234. [INFO] [talledLocalContainer] DEBUG [http-8081-2] UserDaoHibernate.saveUser(63) | user's id: -2
  235.  
  236. AddUser:
  237. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserFormController.showForm(179) | checking for remember me login...
  238. [INFO] [talledLocalContainer] WARN [http-8081-1] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  239. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserFormController.onSubmit(86) | entering 'onSubmit' method...
  240. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserDaoHibernate.saveUser(63) | user's id: null
  241. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserFormController.sendUserMessage(191) | sending e-mail to user [newuser@raibledesigns.com]...
  242. [INFO] [talledLocalContainer] ERROR [http-8081-1] MailEngine.send(92) | Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused). Failed messages: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25 (java.net.ConnectException: Connection refused)
  243. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserFormController.showForm(179) | checking for remember me login...
  244. [INFO] [talledLocalContainer] WARN [http-8081-1] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  245. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserFormController.onSubmit(86) | entering 'onSubmit' method...
  246. [INFO] [talledLocalContainer] DEBUG [http-8081-1] UserManagerImpl.removeUser(123) | removing user: 2
  247.  
  248. ActiveUsers:
  249.  
  250. UserTests:
  251. [echo] Successfully ran all User UI tests!
  252.  
  253. StaticPages:
  254.  
  255. WebServices:
  256.  
  257. DWR:
  258.  
  259. FileUpload:
  260. [INFO] [talledLocalContainer] WARN [http-8081-2] ValidatorResources.getForm(448) | Form 'uploadForm' not found for locale 'en'
  261. [INFO] [talledLocalContainer] WARN [http-8081-2] ValidatorResources.getForm(448) | Form 'uploadForm' not found for locale 'en'
  262. [INFO] [talledLocalContainer] WARN [http-8081-2] ValidatorResources.getForm(448) | Form 'null' not found for locale 'en'
  263. [INFO] ------------------------------------------------------------------------
  264. [INFO] Reactor Summary:
  265. [INFO]
  266. [INFO] Metadata Server ................................... SUCCESS [1.914s]
  267. [INFO] Metadata Server - Core ............................ SUCCESS [19.185s]
  268. [INFO] Metadata Server - Web (Spring MVC) ................ FAILURE [2:29.109s]
  269. [INFO] ------------------------------------------------------------------------
  270. [INFO] BUILD FAILURE
  271. [INFO] ------------------------------------------------------------------------
  272. [INFO] Total time: 2:50.761s
  273. [INFO] Finished at: Mon Jun 04 15:13:59 GMT+05:30 2012
  274. [INFO] Final Memory: 63M/123M
  275. [INFO] ------------------------------------------------------------------------
  276. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.3:run (default) on project metadataserver-web: An Ant BuildException has occured: The following error occurred while executing this line:
  277. [ERROR] /Users/pamusriharsha/openmrs-contrib-metadataserver/web/src/test/resources/web-tests.xml:209: Step[verifytext "verify original filename displayed on page" (13/13)]: Text not found in page. Expected <pom.xml>
  278. [ERROR] -> [Help 1]
  279. [ERROR]
  280. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  281. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  282. [ERROR]
  283. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  284. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
  285. [ERROR]
  286. [ERROR] After correcting the problems, you can resume the build with the command
  287. [ERROR] mvn <goals> -rf :metadataserver-web
Add Comment
Please, Sign In to add comment