Unable to download Maven 3 pom type dependency using Maven 2

2011-08-24 Thread Javed Mandary
Dear All, I have an interesting case whereby I have an artifact com.my.groupid:myartifact:0.44-SNAPSHOT which I have uploaded on my organisation repo (Artifactory) using maven 3.x: com.my.groupid my.artifact 0.44-SNAPSHOT import pom However when users who run maven 2.x (2.2.1) try

Re: was6-maven-plugin and Maven 3.0.3

2011-03-16 Thread javed mandary
< hermod.opstv...@dnbnor.no> wrote: > Hi > > The was6-maven-plugin is intended for WAS 6 only. There are som changes to > the WAS plugin that makes the plugin not workable in M3. I don't know if > David has had time to lok at this yet. > > Hermod > > -----Original Message-

was6-maven-plugin and Maven 3.0.3

2011-03-16 Thread javed mandary
Dear, all we have EJB projects which are deployed on WAS 6.1 and these projects build fine with the was6-maven-plugin with maven 2.2.1 , however upon moving to maven 3.x (3.0.2 and 3.0.3) we are getting validation exceptions which prevent the generation of client stubs . Wanted to know if

Maven 3 New Features

2010-08-27 Thread javed mandary
Hi , been reading around on Maven 3 and trying to see the new features that it contains , one of which is the translator tool apparently it can translate a normal XML POM into a Groovy POM for example . Have any of you used it yet ? and do you know where to download it from? It doesnt seem to

Re: Running a specific plugin goal from the command line in a sub-module of a multi-module reactor project

2010-08-18 Thread javed mandary
Hi Brian, assuming you have the following dependency structure: Root | |Module A |Module B Say Root contains your Parent Pom and module A and B are child sub modules for the Parent and that you've defined Root as a parent pom for both Module A and Modul

Re: Plugin download not working

2010-08-18 Thread javed mandary
You might also want to check that you have the pluginRepository tag defined as well in your settings.xml or Pom.xml. But I think Wayne is correct as well you should try to specify the version number for the plugin regards, Javed On Mon, Aug 16, 2010 at 7:55 PM, Wayne Fay wrote: > > build urgen

Re: RAD 7 + EJB Stubs generation + Maven 2

2008-12-12 Thread javed mandary
Salut, ah thanks a lot Guillaume!!! cheers, Javed On Fri, Dec 12, 2008 at 1:21 PM, Guillaume Boucherie < guillaume.bouche...@gmail.com> wrote: > Hi, > > Maybe you can try to use this plugin. > was6-maven-plugin > > CletteBou > > > On Thu, Dec

RAD 7 + EJB Stubs generation + Maven 2

2008-12-11 Thread javed mandary
Hi All, my problem is that I would like to have the maven to generate my EJB stubs instead of using RAD 7. Here is how my system looks like: 1. maven 2.0.9 2. RAD 7.0.0.7 3. JDK 1.5 I use the WAS 6.1 runtime which is found under C:\Program Files\IBM\SDP70\runtimes\base_v61 So far I have

Nmaven install

2007-09-29 Thread javed mandary
Hi, am trying to install Nmaven version STABLE-2007-07-25: https://svn.apache.org/repos/asf/incubator/nmaven/tags/STABLE-2007-07-25/ Am using: 1. Maven2.0.4 2. java version 1.5.0_09 However when performing a build am getting the following error: --- [INFO] Building NMaven.Plugin.Addin.JavaBi

Python + Maven 2.0.4

2007-02-20 Thread javed mandary
Hi All, I would like to automate my application deployment on WAS 5.1using maven . Currently I have python scripts that perform the deployment . I would like to know if it is possible in Maven to actually call these python scripts and how you would go about doing that? cheers, Jav

Site:deploy host validity prompt

2007-01-23 Thread javed mandary
Hi All, am trying to deploy my site from windowsXP to my RedHat box . Everything works fine except for the fact that each time that the mvn site:deploy command is executed on each of my modules the following message prompts me to validate the authenticity of my host ---START DOS

Re: websphere plugin

2006-08-16 Thread javed mandary
Am going to be working with Websphere 6 Seems there are no plugins for it. Anyone had experience working with M2 and Websphere 6? cheers and thanks, Javed On 7/14/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Is there a maven2 plugin for websphere 6? i remember there was maven plugin

Re: Consulting

2006-06-15 Thread javed mandary
Hi daune, Else you can always query the Maven 2 mailing list for your project build requirements people here are always ready to give a helpful hand until you find a proper belgium consultant. The mailing list is free and a very powerful source of M2 information. cheers, Javed On 6/1

Re: [m2] How to exclude a class from WEB-INF/classes using war plugin

2006-06-14 Thread javed mandary
Max is right use the exludes configuration with the compiler plugin please see http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html , this will filter out undesired classes ;) . cheers, Javed On 6/15/06, Max Cooper <[EMAIL PROTECTED]> wrote: Since it is a class file (as op

Re: how to make sure Foo.properties file copied to the same directory as Foo.class

2006-06-14 Thread javed mandary
---Original Message- From: javed mandary [mailto:[EMAIL PROTECTED] Sent: 14 June 2006 13:22 To: Maven Users List Subject: Re: how to make sure Foo.properties file copied to the same directory as Foo.class Hi Kent, thats pretty simple in your POM add the following co

Re: how to make sure Foo.properties file copied to the same directory as Foo.class

2006-06-14 Thread javed mandary
Hi Kent, thats pretty simple in your POM add the following configuration: src/main/java **/*.properties if as suggested by Andrew you place your properties file in resources folder than your configuration would look like

Re: Newbie archetype question

2006-06-13 Thread javed mandary
un multiple archetypes in the same directory, but I have yet to get that to work (I end up getting subprojects with dependencies). Thanks much, Mike On 6/13/06, javed mandary <[EMAIL PROTECTED]> wrote: > > Assuming you want to create a webapp with > > 1. package : com.mym

Re: [M2] Where to find plugin properties?

2006-06-13 Thread javed mandary
Well you could try something like this: org.codehaus.mojo surefire-report-maven-plugin ${basedir}/target/myNewReportsDir cheers, Javed On 6/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: How can I access it

Re: [M2] Where to find plugin properties?

2006-06-13 Thread javed mandary
Well if you go to the maven sure fire report page: http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html You will see that the name of this property is reportsDirectory . cheers, javed On 6/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Thanks a lot, but this was not t

Re: Newbie archetype question

2006-06-13 Thread javed mandary
Assuming you want to create a webapp with 1. package : com.mymaven.example.web 2.war name: MavenWebAppEx Use the following command to have the maven-archetype-webapp create the webapp for you: mvn archetype:create -DgroupId=com.mymaven.example.web-DartifactId=MavenWebAppEx -Dpackagename= com.my

Re: [M2] Where to find plugin properties?

2006-06-13 Thread javed mandary
Properties for plugins are defined within the configuration tag e.g maven-pmd-plugin /rulesets/basic.xml /rulesets/controversial.xml xml

Re: problem with adding findbugs plugin

2006-06-13 Thread javed mandary
Hi Janhavi, clearly there is a missing jar in your classplath the jaxen jar try adding this dependency to your POM * jaxen jaxen 1.1-beta-9 runtime * cheers, Javed On 6/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: After pointing pluginsrepository

Re: Version of current Mojo

2006-05-24 Thread javed mandary
Add this as global variable to your MOJO: /** * @parameter expression="${project}" * @required */ private MavenProject project; Then get your version number simply by performing: project.getVersion(); cheers, Javed On 5/24/06, G. B. <[EMAIL PROTECTED]> wrote: Hi, How

Re: [m2] multi project build failure [repost]

2006-05-24 Thread javed mandary
Looks like for artifact: rafale.wingsofglory wings-of-glory-model you need to set the version number , try using ${parent.project.version} in your sub-modules. hope that helps, javed On 5/24/06, Piéroni Raphaël <[EMAIL PROTECTED]> wrote: Any one ? 2006/5/18, Piéroni Raphaël <[EMAIL PR

Re: Re: repo down?

2006-05-16 Thread javed mandary
You can use the -o flag , e.g mvn -o install this will tell maven to work in offline mode and it wont try to check for updates on the remote repo. cheers, javed On 5/15/06, Markus Reinhardt <[EMAIL PROTECTED]> wrote: Am Montag, den 15.05.2006, 11:20 +0200 schrieb Jörg Schaible: Geoffre

snapshots.maven.codehaus.org repo down ?

2006-05-16 Thread javed mandary
Hi , is anyone aware if the http://snapshots.maven.codehaus.org/maven2/ repository is down temporarily or permanently ? cheers, Javed

Re: properties in M2

2006-05-15 Thread javed mandary
To get properties in M2 try adding the properties tag in your POM : valuehere You can refer to the http://maven.apache.org/ref/2.0.3-SNAPSHOT/maven-model/maven.html#class_prerequisitesmodel Hope that helps, Javed On 5/16/06, anita kulshreshtha <[EMAIL PROTECTED]> wrote: Hi, Is it

Re: Jira Changes plugin

2006-04-25 Thread javed mandary
t; > > The JIRA changes report does not work with JIRA 3.x. > > Try downloading by hand the URL it prints out below. JIRA is returning > an HTML error page instead of the expected XML content. > > -Original Message- > From: javed mandary [mailto:[EMAIL PROTECTED] &

Maven Plugin dev

2006-04-25 Thread javed mandary
Does a maven plugin extending AbstractMojo have access to the build status {BUILD SUCCESSFUL,BUILD FAILURE} via some inversion of control (IoC) voodoo? thanks, javed

Re: Getting root parent POM artifactid

2006-04-25 Thread javed mandary
${project.artifactId} and ${project.version} just retrieves value for MODULE C not for the root POM unfortunately On 4/25/06, Sharma, Jaikumar <[EMAIL PROTECTED]> wrote: > > It is ${project.artifactId} and ${project.version}, as far as know. > > -Original Message----- >

Getting root parent POM artifactid

2006-04-25 Thread javed mandary
Hi, is there any properties value that returns the top Parent POM's artifact id and version number. Say i have a structure as follows: root POM | |--module A POM | |-module B POM | |--module C POM Is th

Re: Jira Changes plugin

2006-04-19 Thread javed mandary
URL it prints out below. JIRA is returning > an HTML error page instead of the expected XML content. > > -Original Message- > From: javed mandary [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 18, 2006 4:50 AM > To: Maven Users List > Subject: Jira Changes plugin &g

Jira Changes plugin

2006-04-18 Thread javed mandary
Hi , am getting a problem with the changes-maven-plugin , i keep getting a stack trace error each time i execute mvn site Here is the configuration in my POM -POM-- [...] Jira https://thisis.mycompany.com/issues/browse/MYPROJECT [...] [...]

Re: M2 Inherit properties across all subprojects

2006-04-10 Thread javed mandary
Thanks that solves the problem it seems. Info: http://maven.apache.org/guides/introduction/introduction-to-profiles.html cheers, javed On 4/7/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: > > On 4/7/06, javed mandary <[EMAIL PROTECTED]> wrote: > > > I trie

M2 Inherit properties across all subprojects

2006-04-07 Thread javed mandary
Hi, in a multi-project M2 application is there a way to define some global properties e.g tomcat.home , tomcat.deploy.dir ,etc.. which could be inherited by all sub-projects . I tried adding my property values inside a properties tag in my POM : e.g c:/devtools/tomcat But this does not

Re: Maven 2 jira plugin?

2006-03-27 Thread javed mandary
maven-changes-plugin > ~ > > Keep an eye on > http://www.ibiblio.org/maven2/org/apache/maven/plugins/ > > - Yann > > On 3/27/06, javed mandary <[EMAIL PROTECTED]> wrote: > > > > Hi all, > > does anyone know if there exists a jira report plugin for M2 ? > > > > > > kind regards, > > Javed > > > > > >

Maven 2 jira plugin?

2006-03-27 Thread javed mandary
Hi all, does anyone know if there exists a jira report plugin for M2 ? kind regards, Javed

Re: M2 scope dependency

2006-03-16 Thread javed mandary
ok scope to be used = provided :P javed On 3/16/06, javed mandary <[EMAIL PROTECTED]> wrote: > > Hi , > I have a question regarding a dependency which i require during > compilation but when my war is to be created i dont want the jar to be > bundled with the appli

M2 scope dependency

2006-03-16 Thread javed mandary
Hi , I have a question regarding a dependency which i require during compilation but when my war is to be created i dont want the jar to be bundled with the application in the WEB-INF\lib directory ..what scope should i use to define this dependency? regards, Javed

M2 + Pluto1.1

2006-03-14 Thread javed mandary
Hi all, am trying to use a portal and it seems M2 is already intergrated with the build for the pluto1.1 portal , does any one know where to get source code for pluto 1.1 ? regards, Javed

Re: Multi-project woes

2006-02-22 Thread javed mandary
Hi Matt, if i understand correctly you have defined the child modules but have you defined the parent of of your child modules inside of the child module POM files ? In each child module POM there needs to be something like this: com.package.name.of.parent parent pare

Cargo- Maven 2

2006-02-21 Thread javed mandary
Hi, am getting a problem with making Maven 2 run cargo regarding timeout with the following profile: ---POM extract tomcat5x

Re: cobertura plugin

2006-02-20 Thread javed mandary
d regards, > Dave Sag > > > > > > > "Brett Porter" <[EMAIL PROTECTED]> wrote on 20-02-2006 09:05:19: > > > this problem was fixed in SVN (asm is no longer propogated to tests > > themselves) > > > > On 2/20/06, javed mandary <[EM

Re: cobertura plugin

2006-02-19 Thread javed mandary
> same problem as you describe. perhaps you'd like to vote on that issue and > add your comments there. > > Kind regards, > Dave Sag > > > > > > > "javed mandary" <[EMAIL PROTECTED]> wrote on 17-02-2006 14:14:17: > > > ok , what

Re: Skin inheritance

2006-02-19 Thread javed mandary
I had a similar problem , the site.xml created for the parent is not inherited by the child modules , i had to create a site.xml for each child to have a consistent look and feel across the while project. Same thing applies for site.css file which must be defined repeatedly for each child. Anothe

Re: cobertura plugin

2006-02-17 Thread javed mandary
ok , what about the cobertura plugin for maven 2 ? In maven site I am getting a problem after cobertura runs the junit tests and try to create a report it crashes and fails the build. Has anyone got similar problems and any solutions to that? this is what i am using: org.codehaus

Re: cobertura plugin

2006-02-17 Thread javed mandary
Is the 1.2-SNAPSHOT for maven 1 or for maven 2 ? On 2/17/06, Nicolas De Loof <[EMAIL PROTECTED]> wrote: > > > 1.2-SNAPSHOT works fine for me. > > Thanks ! > > Nicolas De Loof a écrit : > > I'm using maven-cobertura-plugin from [EMAIL PROTECTED] > > As this site uses CVS, this seems you've in mind

Re: M2.0.2 SVN ChangeLog

2006-02-13 Thread javed mandary
> > If you have an anonymous access to your svn, they don't required. > > If you need them, try the followings parameters to command line : > -Dusername=your_username -Dpassword=your_password > > Emmanuel > > javed mandary a écrit : > > Hi All, > >

M2.0.2 SVN ChangeLog

2006-02-13 Thread javed mandary
Hi All, regarding the changelog and developer activity reports generated , where do you specify the username and password used to access the SCM -> SVN ? is that in the settings.xml ... any one has an example? Right now my reports are being generated but without being able to indentify a

Re: Jdepend maven 2 plugin

2006-02-09 Thread javed mandary
At the following in your POM: repo-ibiblio-mirror Ibiblio Mirror http://mirrors.dotsrc.org/maven2 Maven Snapshots http://snapshots.maven.codehaus.org/maven2/ true

M2.0.2 PMD , enum and JDK 1.5

2006-02-09 Thread javed mandary
Hi all, am currently having a problem when running site with m2.0.2 , I have configured PMD in reporting tag: - POM extract-- org.apache.maven.plugins maven-pmd-plugin

M2.0.2 Source Xref and JavaDocs

2006-02-05 Thread javed mandary
Hi , am currently using Maven 2.0.2 to generate a site out of the main POM of my multiple-project . There are many sub poms which describe the sub-modules within my project . However when i generate site , the report for Source Xref says: -- Project so

Re: Using cobertura with Maven 2

2006-02-05 Thread javed mandary
fications, > > > > > > > > Rik > > > > > > > > > > > > > > > >Maven Snapshots > > > >http://snapshots.maven.codehaus.org/maven2/ > > > > > > > > true > > > >

Multiple project and Site plugin

2006-02-03 Thread javed mandary
Hi ppl, I have a project with many modules each having its own POM , what I would like to do is that when I generate my SITE in the parent directory , the child POMs are referenced in the generated index.html file. Is there some dashboard plugin or multiple project plugin to achieved thi

Re: Using cobertura with Maven 2

2006-02-03 Thread javed mandary
> > >Maven Snapshots >http://snapshots.maven.codehaus.org/maven2/ > > true > > > false > > > > > > > 2006/2/3, javed mandary <[EMAIL PROTECTED]>: > > > > Hi Guys, > > i'd

Using cobertura with Maven 2

2006-02-02 Thread javed mandary
Hi Guys, i'd like to know some information about the cobertura plugin in general: 1. On which repo is the cobertura-maven-plugin hosted ? 2. How to configure it in your POM ? I tried the following 2 configurations in my POM: ---EXTRACT OF MY POM --

Re: M2 NTLM Proxy and remote ibiblio repo

2005-11-15 Thread javed mandary
esources-plugin in my plugins dir , would i need to manually download and install the plugin or does Maven 2 takes care of the download and installation of this plugin? regards, Javed On 11/16/05, javed mandary <[EMAIL PROTECTED]> wrote: > > thanks treloar will try and let you know >

Re: M2 NTLM Proxy and remote ibiblio repo

2005-11-15 Thread javed mandary
USER: > (Note: Leave the PASSWORD entry blank, NTLMAPS will prompt you for it) > - Run NTLMAPS, the default LISTEN_PORT is 5865. > - Configure M2 $user.dir/.m2/settings.xml > > > > Local NTLMAPS > true > http > > > localhost > 5865 > > - Run mvn. >

Re: M2 NTLM Proxy and remote ibiblio repo

2005-11-15 Thread javed mandary
on't support it for the moment, because we didn't have tester. > Perhaps you can help us to support it. > > Emmanuel > > javed mandary a écrit : > > Hi guys, > > am having a problem right now accessing the remote ibiblio repository > due to > > the fa

M2 NTLM Proxy and remote ibiblio repo

2005-11-14 Thread javed mandary
Hi guys, am having a problem right now accessing the remote ibiblio repository due to the fact that am behind firewalls and the proxy am using is NTLM . Now it seems that NTLM proxies are not supported by Maven 2. see: http://maven.apache.org/guides/mini/guide-proxies.html This is why I was hopin

Re: [m2] Clover plugin

2005-11-14 Thread javed mandary
What dont you guys use cobertura*(code coverage tool) instead of clover , its free compared to clover where you need to have a license . http://cobertura.sourceforge.net/ regards, Javed On 11/15/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > > This is what I get from maven calling 'mvn -e site' >