I’m attempting to use your plug-in for deploying to Tomcat. It says it’s successful but I don’t see the application deployed in any way. Can you advise?
My pertinent information: Tomcat 5.0.28 (note that I’m not trying to precompile JSP so this should be ok, no?) Maven 1.0.2 plugin version 1.2.1 Project.properties: maven.tomcat.manager.url=http://localhost:8080/manager maven.tomcat.username=admin maven.tomcat.password=admin maven.tomcat.jsp.precompile=false maven.xml: <goal name="deploy" description="Deploy everything to the tomcat server"> <j:forEach items="${web_projects}" var="web_project" indexVar="projectNumber"> <echo>deploy</echo> <m:reactor basedir="${basedir}/.." includes="${web_project}/project.xml" postProcessing="true" ignoreFailures="true" goals="tomcat:deploy" /> </j:forEach> </goal> Output: __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.0.2 build:start: deploy: [echo] deploy Starting the reactor... Our processing order: QCTPCNCustomerLogWeb +---------------------------------------- | Processing QCTPCNCustomerLogWeb | Memory: 3M/4M +---------------------------------------- build:start: war:init: tomcat:init: [echo] Found context file c:\PVCS\Agile9\ProductDataManagement\J2EEProjects\ QCTPCNCustomerLog\QCTPCNCustomerLogMaven\..\QCTPCNCustomerLogWeb/src/webapp/META -INF/context.xml [echo] found /QCTPCN in context file war:war-resources: [copy] Copying 1 file to C:\PVCS\Agile9\ProductDataManagement\J2EEProjects\Q CTPCNCustomerLog\QCTPCNCustomerLogWeb\WebContent [copy] Copying 1 file to C:\PVCS\Agile9\ProductDataManagement\J2EEProjects\Q CTPCNCustomerLog\QCTPCNCustomerLogWeb\WebContent\WEB-INF tomcat:_jspc: [echo] maven.tomcat.jsp.precompile = 'false' skipping pre-compile java:prepare-filesystem: java:compile: [echo] Compiling to c:\PVCS\Agile9\ProductDataManagement\J2EEProjects\QCTPCN CustomerLog\QCTPCNCustomerLogMaven\..\QCTPCNCustomerLogWeb/build [echo] ========================================================== NOTE: Targetting JVM 1.4, classes will not run on earlier JVMs ========================================================== java:jar-resources: test:prepare-filesystem: test:test-resources: test:compile: [echo] No test source files to compile. $ [echo] No tests to run. war:webapp: [echo] Assembling webapp QCTPCNCustomerLogWeb tomcat:jspc: war:war: [echo] Building WAR QCTPCNCustomerLogWeb [jar] Building jar: C:\PVCS\Agile9\ProductDataManagement\J2EEProjects\QCTPCN CustomerLog\QCTPCNCustomerLogWeb\dist\QCTPCN.war tomcat:_deploy: [echo] ctx '/QCTPCN' file:c:\PVCS\Agile9\ProductDataManagement\J2EEProjects\ QCTPCNCustomerLog\QCTPCNCustomerLogMaven\..\QCTPCNCustomerLogWeb/dist/QCTPCNCust omerLogWeb/QCTPCN.war BUILD SUCCESSFUL Total time: 8 seconds Finished at: Tue Apr 18 10:49:36 PDT 2006 -- View this message in context: http://www.nabble.com/Tomcat-plugin-t1386937.html#a3978438 Sent from the Maven - Users forum at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
