Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [INFO] Scanning for projects...
- [INFO] ------------------------------------------------------------------------
- [INFO] Reactor Build Order:
- [INFO]
- [INFO] Metadata Repository
- [INFO] Metadata Repository - Core
- [INFO] Metadata Repository - Web (Spring MVC)
- [INFO]
- [INFO] ------------------------------------------------------------------------
- [INFO] Building Metadata Repository 1.0-SNAPSHOT
- [INFO] ------------------------------------------------------------------------
- [INFO]
- [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository ---
- [INFO]
- [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadatarepository ---
- [INFO] Installing /Users/pamusriharsha/metadatarepository/pom.xml to /Users/pamusriharsha/.m2/repository/org/openmrs/contrib/metadatarepository/1.0-SNAPSHOT/metadatarepository-1.0-SNAPSHOT.pom
- [INFO]
- [INFO] ------------------------------------------------------------------------
- [INFO] Building Metadata Repository - Core 1.0-SNAPSHOT
- [INFO] ------------------------------------------------------------------------
- [INFO]
- [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository-core ---
- [INFO] Deleting /Users/pamusriharsha/metadatarepository/core/target
- [INFO]
- [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-core ---
- [INFO] Using 'UTF-8' encoding to copy filtered resources.
- [INFO] Copying 8 resources
- [INFO]
- [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadatarepository-core ---
- [INFO] Compiling 38 source files to /Users/pamusriharsha/metadatarepository/core/target/classes
- [INFO]
- [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadatarepository-core ---
- [INFO] Using 'UTF-8' encoding to copy filtered resources.
- [INFO] Copying 13 resources
- [INFO]
- [INFO] >>> hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core >>>
- [INFO]
- [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-core ---
- [INFO] Using 'UTF-8' encoding to copy filtered resources.
- [INFO] Copying 8 resources
- [INFO]
- [INFO] <<< hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core <<<
- [INFO]
- [INFO] --- hibernate3-maven-plugin:2.2:hbm2ddl (default) @ metadatarepository-core ---
- [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/metadatarepository/core/src/main/resources/hibernate.cfg.xml
- [INFO] Configuration XML file loaded: file:/Users/pamusriharsha/metadatarepository/core/src/main/resources/hibernate.cfg.xml
- [INFO] Configuration Properties file loaded: /Users/pamusriharsha/metadatarepository/core/target/test-classes/jdbc.properties
- alter table package drop foreign key FKCFE53446179E514B;
- alter table user_role drop foreign key FK143BF46A72738D6B;
- alter table user_role drop foreign key FK143BF46A179E514B;
- drop table if exists app_user;
- drop table if exists package;
- drop table if exists role;
- drop table if exists user_role;
- 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;
- 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;
- create table role (id bigint not null auto_increment, description varchar(64), name varchar(20), primary key (id)) ENGINE=InnoDB;
- create table user_role (user_id bigint not null, role_id bigint not null, primary key (user_id, role_id)) ENGINE=InnoDB;
- alter table package add index FKCFE53446179E514B (user_id), add constraint FKCFE53446179E514B foreign key (user_id) references app_user (id);
- alter table user_role add index FK143BF46A72738D6B (role_id), add constraint FK143BF46A72738D6B foreign key (role_id) references role (id);
- alter table user_role add index FK143BF46A179E514B (user_id), add constraint FK143BF46A179E514B foreign key (user_id) references app_user (id);
- [INFO]
- [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadatarepository-core ---
- [INFO] Not compiling test sources
- [INFO]
- [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadatarepository-core ---
- 181 [main] INFO org.dbunit.database.DatabaseDataSet -
- database name=MySQL
- database version=5.5.21
- database major version=5
- database minor version=5
- jdbc driver name=MySQL-AB JDBC Driver
- jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
- jdbc driver major version=5
- jdbc driver minor version=1
- [INFO]
- [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadatarepository-core ---
- [INFO] Tests are skipped.
- [INFO]
- [INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ metadatarepository-core ---
- [INFO] Building jar: /Users/pamusriharsha/metadatarepository/core/target/metadatarepository-core-1.0-SNAPSHOT.jar
- [INFO]
- [INFO] --- maven-install-plugin:2.3.1:install (default-install) @ metadatarepository-core ---
- [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
- [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
- [INFO]
- [INFO] ------------------------------------------------------------------------
- [INFO] Building Metadata Repository - Web (Spring MVC) 1.0-SNAPSHOT
- [INFO] ------------------------------------------------------------------------
- [INFO]
- [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ metadatarepository-web ---
- [INFO] Deleting /Users/pamusriharsha/metadatarepository/web/target
- [INFO]
- [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ metadatarepository-web ---
- [INFO] Using 'UTF-8' encoding to copy filtered resources.
- [INFO] Copying 34 resources
- [INFO]
- [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ metadatarepository-web ---
- [INFO] Compiling 24 source files to /Users/pamusriharsha/metadatarepository/web/target/classes
- [INFO]
- [INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ metadatarepository-web ---
- [INFO] Using 'UTF-8' encoding to copy filtered resources.
- [INFO] Copying 4 resources
- [INFO] Copying 15 resources
- [INFO]
- [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ metadatarepository-web ---
- [INFO] Not compiling test sources
- [INFO]
- [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test-compile) @ metadatarepository-web ---
- 6170 [main] INFO org.dbunit.database.DatabaseDataSet -
- database name=MySQL
- database version=5.5.21
- database major version=5
- database minor version=5
- jdbc driver name=MySQL-AB JDBC Driver
- jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
- jdbc driver major version=5
- jdbc driver minor version=1
- [INFO]
- [INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ metadatarepository-web ---
- [INFO] Tests are skipped.
- 6300 [main] INFO org.dbunit.database.DatabaseDataSet -
- database name=MySQL
- database version=5.5.21
- database major version=5
- database minor version=5
- jdbc driver name=MySQL-AB JDBC Driver
- jdbc driver version=mysql-connector-java-5.1.14 ( Revision: ${bzr.revision-id} )
- jdbc driver major version=5
- jdbc driver minor version=1
- [INFO]
- [INFO] --- dbunit-maven-plugin:1.0-beta-3:operation (test) @ metadatarepository-web ---
- [INFO]
- [INFO] --- maven-war-plugin:2.1.1:war (default-war) @ metadatarepository-web ---
- [INFO] Packaging webapp
- [INFO] Assembling webapp [metadatarepository-web] in [/Users/pamusriharsha/metadatarepository/web/target/metadatarepository-web-1.0-SNAPSHOT]
- [INFO] Processing war project
- [INFO] Copying webapp resources [/Users/pamusriharsha/metadatarepository/web/src/main/webapp]
- [INFO] Webapp assembled in [6579 msecs]
- [INFO] Building war: /Users/pamusriharsha/metadatarepository/web/target/metadatarepository-web-1.0-SNAPSHOT.war
- [INFO] WEB-INF/web.xml already added, skipping
- [INFO]
- [INFO] --- cargo-maven2-plugin:1.0.6:start (start-container) @ metadatarepository-web ---
- [INFO] ------------------------------------------------------------------------
- [INFO] Reactor Summary:
- [INFO]
- [INFO] Metadata Repository ............................... SUCCESS [1.558s]
- [INFO] Metadata Repository - Core ........................ SUCCESS [14.842s]
- [INFO] Metadata Repository - Web (Spring MVC) ............ FAILURE [21.280s]
- [INFO] ------------------------------------------------------------------------
- [INFO] BUILD FAILURE
- [INFO] ------------------------------------------------------------------------
- [INFO] Total time: 38.130s
- [INFO] Finished at: Fri Jun 22 16:25:09 GMT+05:30 2012
- [INFO] Final Memory: 31M/79M
- [INFO] ------------------------------------------------------------------------
- [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
- [ERROR] java.io.IOException: Negative seek offset
- [ERROR] -> [Help 1]
- [ERROR]
- [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
- [ERROR] Re-run Maven using the -X switch to enable full debug logging.
- [ERROR]
- [ERROR] For more information about the errors and possible solutions, please read the following articles:
- [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException
- [ERROR]
- [ERROR] After correcting the problems, you can resume the build with the command
- [ERROR] mvn <goals> -rf :metadatarepository-web
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement