2010/12/20 robin <[email protected]>: > hi > > i use tranditional eclipse web project to develop jetspeed application(does > not based maven web project), now i want to import psml files into db > management for cluster. how can i use maven to import these psml files into > datadase as well as import jetexpress project into database? > The command, `$mvn jetspeed:mvn -Dtarget=all', will build and install your custom portal project, initialize your database and finally deploy your portal and portlet application to your Tomcat. However, during your continuous development, doing all tasks by the above command could be regarded as inefficient. Other commands include:
portal-seed-dbpsml mvn jetspeed:mvn -Dtarget=portal-seed-dbpsml Seeds database-based pages data for your custom portal application. deploy-portal-dbpsml mvn jetspeed:mvn -Dtarget=deploy-portal-dbpsml Deploys your custom portal with seeding database-based pages data. portal-seed mvn jetspeed:mvn -Dtarget=portal-seed Just seeds the initial data for your custom portal without initializing the database. Of course all of this information is online. The full list of build commands are found here, in the table at the bottom of the page: http://portals.apache.org/jetspeed-2/buildguide/jetspeed-archetype.html All of these commands are also available from a custom build, like the tutorial --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
