Re: Maven assemply plug in

2009-08-25 Thread Saritha SV
A similar issue is found in - http://www.nabble.com/how-to-set-manifestEntries-with-maven-assembly-plugin--td15584576.html ..You may have to see the suggestions provided . http://www.thekua.com/atwork/2008/10/maven-assembly-plugin-ignoring-manifestentries/ Thanks Saritha SV http

Re: mvn deploy -- CHECKSUM FAILED

2009-08-24 Thread Saritha SV
Try deleting the contents of specified artifact from the repository . Some metadata xml file must have got corrupted . Thanks, Saritha On Sun, Aug 23, 2009 at 10:02 PM, Adrian Herscu adrian.her...@gmail.comwrote: Hi all, I am using Maven 2.2.1 on Sun JDK 1.6.0_16. When I am running mvn

Re: Referencing properties in archetype-metadata.xml

2009-08-10 Thread Saritha SV
://maven.apache.org/guides/getting-started/index.html#How_do_I_filter_resource_files has some egs for including reference in properties file . Thanks Saritha SV On Thu, Aug 6, 2009 at 3:56 PM, Xenofon Papadopoulos xpa...@gmail.comwrote: I have already seen the file. However I understood enable not to ask

Re: Referencing properties in archetype-metadata.xml

2009-08-06 Thread Saritha SV
values, which enable not to ask the user for there values. So here the value for context-root will not be asked since a default value is provided .. Thanks Saritha SV On Thu, Aug 6, 2009 at 12:06 PM, Xenofon Papadopoulos xpa...@gmail.comwrote: Hello, I'm using trying to create an archetype

Re: archetype plug-in vs custom plug-in

2009-08-01 Thread Saritha SV
-catalog.html Also Archetype Plugin can be used to Create an Archetype with a property file : http://maven.apache.org/plugins/maven-archetype-plugin/examples/create-with-property-file.html Thanks Saritha SV On Sat, Aug 1, 2009 at 11:03 AM, Murali Pottlapelli murali.pottlape...@sun.com wrote: Thanks

Re: War packaging and how to change dependencies directory

2007-11-05 Thread Saritha SV
Hi Inorder to exclude dependencies you can specify scope as provided for the dependencies . And to include these dependencies in a different folder please try : javaModule groupIdgrupid of dependency/groupId artifactIdartifact id of

Re: jspc precompiler error

2007-11-05 Thread Saritha SV
Hi You must use the jspc plugin in conjunction with the maven-war-plugin. The maven-war-plugin must have its *webXml* configuration parameter set to the newly created web.xml, which is $basedir/target/jspweb.xml by default. See the following example configuration in the link :

Re: Maven's current working directory and changing resources location ...

2007-11-05 Thread Saritha SV
in your generated jar file . Thanks Saritha SV On 11/5/07, KedarMhaswade [EMAIL PROTECTED] wrote: I have two questions, answers to which were not obvious. 1- What is the current working directory (i.e. System.getProperty(user.dir))? Can this be printed when one does mvn -X ...? 2- In our

Re: War packaging and how to change dependencies directory

2007-11-05 Thread Saritha SV
in pom.xml and thus the generated war file will have the structure : -WEB-INF -services -full directory for the dependency as you have created in services folder in project. - jar file Thanks Saritha SV On 11/5/07, Dimitris Kapanidis [EMAIL PROTECTED] wrote: Saritha SV wrote: Hi

Re: disabling application.xml generation

2007-11-02 Thread Saritha SV
Hi You can try giving the full path in applicationXml tag like : applicationXml${basedir}/src/main/application/META-INF/application.xml/applicationXml along with Maven-ear-plugin and then for each module specify like : javaModule

Re: running a specific plugin only while deploying ; running multiple times a same plugin while varying its parameters

2007-11-02 Thread Saritha SV
Hi For running multiple times a same plugin with various parameters , you can use profiles . http://maven.apache.org/guides/introduction/introduction-to-profiles.html this will give you an intro to build profiles . You can use different profiles in pom.xml , with the same plugin having