|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
deploy an applicationHi community,
working with exoplatform v2.x, I am currently trying to make a product-exo-ecm-geo.xml that would deploy the standard product-exo-ecm.xml and a other web application. I tryied different ways to deploy it without success. I would like the war file of this application to be copied in the webapps directory of my tomcat with all the exoplatform war files. I tryed to add a dependency , but I don't really understood how it works.. does someone can help me? here is the structure of my src... \eXo \projects \v2.x ..... \geo\web\target \classes \geo \geo.war ..... thanks -- You receive this message as a subscriber of the exoplatform@... mailing list. To unsubscribe: mailto:exoplatform-unsubscribe@... For general help: mailto:sympa@...?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
|
|
Re: deploy an applicationHi
You need just add dependency tag (e.g. in product-exo-ecm.xml): <dependency> <groupId>geo</groupId> <artifactId>web</artifactId> <version>1.7</version> <scope>compile</scope> </dependency> (or smth like that) after that it will work (I hope :)) 2007/5/30, jeremie garcia <jeremie.garcia@...>: Hi community, -- Best regards, Vitaliy -- You receive this message as a subscriber of the exoplatform@... mailing list. To unsubscribe: mailto:exoplatform-unsubscribe@... For general help: mailto:sympa@...?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
|
|
Re: deploy an applicationHi,
1.) I see from your directory structure that your project called geo and is in the same directory v2.x like exo-ecm, exo-portal etc. If you will to build for example an ecm portal you may copy the content of the directory exo-ecm to v2.x/geo and rename the entries with exo-ecm by geo. For more information visit this site: http://www.halcyonsolutions.info/halcyon/faces/public/exo?portal:componentId=exo&portal:type=action&portal:isSecure=false&uicomponent=UIContentList&op=viewDocument&objectId=production:/cms/publications/Exo/How%20to%20create%20a%20custom%20eXo%20ECM%20application. 2.)The dependency in the file product-geo.xml can see like this: <dependency> <groupId>geo</groupId> <artifactId>geo.portlets.MyPortlet</artifactId> <version>1.0</version> <type>exo-portlet</type> <scope>runtime</scope> </dependency> 3.) Don't forget to set the environment variable M2_REPO Abdel
|
| Free embeddable forum powered by Nabble | Forum Help |