Filter a javascript file within maven-war-plugin webResources - basedir does not exist

2009-03-12 Thread ez
i need to filter a javascript file and put a system variable in it. so, i'm using maven-war-plugin webResources element: org.apache.maven.plugins maven-war-plugin true ${project.build.directory}/work/${wa

Re: Getting log4j output from ANT tasks to maven output

2009-01-24 Thread ez
ure a > CONSOLE appender in log4j your should get what you want? > > 2009/1/22 ez > >> >> Well, I havn't.. >> So, i should just place log4j.properties file? how will i make it >> redirect >> all logs to maven output? >> >> >&

Re: Getting log4j output from ANT tasks to maven output

2009-01-22 Thread ez
Well, I havn't.. So, i should just place log4j.properties file? how will i make it redirect all logs to maven output? Jaikiran wrote: > > > > ez wrote: >> >> instead i get this: >> log4j:WARN No appenders could be found for logger >> (com.i18

Getting log4j output from ANT tasks to maven output

2009-01-20 Thread ez
i'm using maven with antrun plugin. the ANT task i'm using uses log4j. however, logging output does not get into maven's output. instead i get this: log4j:WARN No appenders could be found for logger (com.i18n.Excel2Properties). log4j:WARN Please initialize the log4j system properly. what should i

Re: How do i upload sources for a 3rd party jar?

2008-10-24 Thread ez
upload command was: call mvn deploy:deploy-file -DgroupId=jboss.portal -DartifactId=api -Dclassifier=sources -Dversion=2.6.5 "-Dfile=./portal-api-lib-2.6.5.SP1-sources.jar" -Dpackaging=jar -Durl=http://daily-build:8087/nexus/content/repositories/thirdparty what can it be? ez wrote

Re: How do i upload sources for a 3rd party jar?

2008-10-23 Thread ez
yep :-) that work, thanks Wendy Smoak-3 wrote: > > On Thu, Oct 23, 2008 at 1:25 PM, ez <[EMAIL PROTECTED]> wrote: > >> i created a jar that contains the jar and the sources (jar-ed). >> then i called mvn deploy:deploy-file.. >> however, the entire ja

How do i upload sources for a 3rd party jar?

2008-10-23 Thread ez
i'm using nexus as my repository. i'm working with jboss portal and want to upload its jars and their sources to the repository. i tried following the instructions in http://maven.apache.org/guides/mini/guide-central-repository-upload.html but failed.. i created a jar that contains the jar and the

activate-profiles order of execution

2008-10-14 Thread ez
how is the order of profiles determined? can i force a certain order? -- View this message in context: http://www.nabble.com/activate-profiles-order-of-execution-tp19969868p19969868.html Sent from the Maven - Users mailing list archive at Nabble.com. ---

Re: dynamic properies

2008-10-13 Thread ez
xx} > > > > yyy > > ${property.yyy} > > > > zzz > > ${property.zzz} > > > > > 2008/10/13 ez <[EMAIL PROTECTED]>: >> >> i need to use dynamic properties i maven 2. >> say

dynamic properies

2008-10-13 Thread ez
i need to use dynamic properties i maven 2. say i pass to maven a property called propName using -DpropName=zzz then in the pom.xml i need to define a dynamic property, which loads its value from another pre-defined property: some xxx val some yyy val some zzz val ${property.} can that be done?