raven instead of maven?

2007-03-27 Thread solo turn
hi, i was wondering if anybody of you already used raven (http://raven.rubyforge.org/) instead of maven, and the your experiences with it? it builds on rake and ruby gems which is successfully used e.g. for ruby on rails. what ibiblio is for maven, http://gems.rubyraven.org/ is for raven. it

Re: clear separation of source and target

2006-10-21 Thread solo turn
assumptions about things being in their default locations. Scm just seems less risky to me. If I'm understanding your motivation, is 'mvn clean' not satisfactory? It deletes all the generated resources. Greg Vaughn [EMAIL PROTECTED] solo turn [EMAIL PROTECTED] wrote on 10/20/2006 02:57:52 AM

Re: clear separation of source and target

2006-10-20 Thread solo turn
work for you, but I'd recommend the scm approach. The details will depend on which scm tool you use. Greg Vaughn [EMAIL PROTECTED] solo turn [EMAIL PROTECTED] 10/18/2006 03:56 PM Please respond to Maven Users List users@maven.apache.org To Maven Developers List users@maven.apache.org cc Subject

Re: clear separation of source and target

2006-10-20 Thread solo turn
thanks a lot remy, how could you do this for a lot of projects without adding it to every pom? -solo. On 10/19/06, Rémy Sanlaville [EMAIL PROTECTED] wrote: I do it with XDoclet like this and it works well : artifactIdxdoclet-maven-plugin/artifactId executions

clear separation of source and target

2006-10-18 Thread solo turn
hi, is there an easy possibility to separate source code (which we write) from generated things? we'd prefer to keep the directory where the pom is to stay clean of all built and generated things to use source code control systems like mercurial or darcs on that tree. is it possible to do

how-to profiles and environment depending settings

2006-02-20 Thread solo turn
hi, what would you recommend to use for deploying differrent settings to different environments? a dedicated file for every environment? replacing a string? or is there any other possibility? a how-to link on the web would be great, i found

Re: you are serious with antrun-plugin 10 levels deep xml construct?

2005-09-13 Thread solo turn
Westerhof [EMAIL PROTECTED] wrote: On Tue, 6 Sep 2005, solo turn wrote: Hi, This is really more appropriate on the user list, so moving it there. i tried to use m2 because of concise pom.xml files ... and now i tried to do an ftp upload of the result. is there another way

Re: Maven 2 error

2005-07-14 Thread solo turn
i get something like this now with v alpha-3. $ m2 -e archtype:create -DgroupID=ts -DartifactId=demoapp + Error stacktraces are turned on. [INFO] [INFO] Building Maven Default Project [INFO]

Re: M2: Getting startet, dependency problem

2005-06-28 Thread solo turn
if your program compiles with log4j you have a compile time dependency to log4j. not a runbtime like you did in the pom :) -solo. On 6/28/05, Christian Schlaefcke [EMAIL PROTECTED] wrote: Hi Folks, still try to get my own project under maven2 control. I tried m2 install in the project

Re: [m2] transitive or module dependencies to create multiple jar libraries

2005-06-07 Thread solo turn
these dependencies in all projects (i.e. add or remove a jar, adjust the versions of all of it). we would like to just increase the version of the one dependency. -solo. On 6/3/05, Emmanuel Venisse [EMAIL PROTECTED] wrote: Hi, solo turn wrote: hi, how do you specify multiple jar files dependencies like

[m2] transitive or module dependencies to create multiple jar libraries

2005-06-03 Thread solo turn
hi, how do you specify multiple jar files dependencies like it was done in plexus-components, which by itself has no jar, but modules? to bundle multiple jars so developers just have to state one dependency: myproject.pom contains: dependencies dependency groupIdplexus/groupId

itext 1.3 not on ibiblio, how does it go there?

2005-06-03 Thread solo turn
hi, how does itext 1.3 get into ibiblio archive? or who has the right to do that? -solo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

compile time dependencies not in war file in case of separate shared library deploy

2005-06-03 Thread solo turn
hi, how do we state compile time dependencies so that the dependency does not get into the final war? what do we want to do: * state mysharedlib-1.0 as compile time dependency for myapp-1.0.war * build a war, which does NOT contain this library if there is a bug in the shared library, we are

Re: itext 1.3 not on ibiblio, how does it go there?

2005-06-03 Thread solo turn
sorry, i forgot to mention: it is for m2. i did not see the mentioned target there ... On 6/3/05, Carlos Sanchez [EMAIL PROTECTED] wrote: Please read http://maven.apache.org/reference/repository-upload.html On 6/3/05, solo turn [EMAIL PROTECTED] wrote: hi, how does itext 1.3 get

unzip, unjar a file to target, add inluded jars to build classpath

2005-03-07 Thread solo turn
hi, i was looking for an example how to unzip/unjar a file provided by http://server/some-dir/mypkg-1.0.jar (zip) * what path should i put it on the webserver (some-dir above)? jars does not seem right, as it is just a compressed file? * what maven goal do i use to make my project depend on

include java -jar geronimo-1.0-M3-installer.jar

2005-01-21 Thread solo turn
hi, how can one include a non-traditional jar file like an installer.jar (as it is geronimo-1.0-M3-installer.jar) into a maven project? i.e. you have to unpack it and at a later stage add other things somewhere in the extracted content (e.g. deploy a webapp). -solo.