Re: www.mvnrepository.com HTTP 550

2008-06-28 Thread Wayne Fay
mvnrepository is like Google for Maven stuff. They do not actually store anything, as far as I know. So adding them as a repo to your pom would be a bad move. Look at the URL for the pom -- you'll notice its at ibiblio. Wayne On 6/28/08, Mac-Systems <[EMAIL PROTECTED]> wrote: > Anyone knows if i

Re: Need to generate simple runner script

2008-06-28 Thread Kathryn Huxtable
Thanks! That's pretty much what I need. I didn't even look at the filtering option because I thought they meant something else. I guess I should just RT all of the FM. ;-) -K On Jun 28, 2008, at 8:40 AM, Andrew Robinson wrote: I just did something like this. Just use the maven assembly plug

Re: Need to generate simple runner script

2008-06-28 Thread Andrew Robinson
actually you may be able to use pom.version, it was the site plugin that doesn't like dots because it uses velocity. On 2008-06-28, Andrew Robinson <[EMAIL PROTECTED]> wrote: > I just did something like this. Just use the maven assembly plugin to > package your app as a zip, tar or whatever. It ca

Re: Need to generate simple runner script

2008-06-28 Thread Andrew Robinson
On 2008-06-28, Andrew Robinson <[EMAIL PROTECTED]> wrote: > actually you may be able to use pom.version, it was the site plugin > that doesn't like dots because it uses velocity. > > On 2008-06-28, Andrew Robinson <[EMAIL PROTECTED]> wrote: >> I just did something like this. Just use the maven asse

Re: Need to generate simple runner script

2008-06-28 Thread Andrew Robinson
I just did something like this. Just use the maven assembly plugin to package your app as a zip, tar or whatever. It can filter ${ in the files. It is documented as not liking . In the names though. Steps (I am on my iPod so this is not 100% accurate): 1) add a poroperty to your pom.xml: ${pom.ver

Re: Surefire Test Sequence..

2008-06-28 Thread Niranjan Deshpande
I am aeare of that. Can i get a jar of the junit4.x maven plugin? On Sat, Jun 28, 2008 at 3:04 PM, Jeff MAURY <[EMAIL PROTECTED]> wrote: > With the surefire plugin, you can also exclude somes tests with the > excludes > tags: > > http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.htm

Re: Surefire Test Sequence..

2008-06-28 Thread Jeff MAURY
With the surefire plugin, you can also exclude somes tests with the excludes tags: http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#excludes Jeff MAURY On Sat, Jun 28, 2008 at 11:56 AM, Niranjan Deshpande <[EMAIL PROTECTED]> wrote: > I got the link to the maven-junit4.x plugi

ClassNotFoundException when running my first Mojo

2008-06-28 Thread aXXa
I have made my own maven plugin, to be run in process-classes phase. The Mojo is supposed to instantiate a class that manipulates the .class files generated during compile phase, but for some reason the class files in ${basedir}/target/classes cannot be found, i.e. a ClassNotFoundException is thro

www.mvnrepository.com HTTP 550

2008-06-28 Thread Mac-Systems
Anyone knows if i can count on mvnrepository.com ? I often get an HTTP 550 For example. Try to download or look at the POM.xml via Website Link. http://www.mvnrepository.com/artifact/org.swinglabs/swingx/0.9.2 Also i added the dependency to my pom.xml. Maven do not download it, no errors.

Re: Surefire Test Sequence..

2008-06-28 Thread Niranjan Deshpande
I got the link to the maven-junit4.x plugin here https://maven2-junit4x.svn.sourceforge.net/svnroot/maven2-junit4x but isnt there a jar available as usual it is the case with other plugins. On Fri, Jun 27, 2008 at 9:23 PM, André Kelpe <[EMAIL PROTECTED]> wrote: > 2008/6/27 Geoffrey Wiseman <[EMA

Re: Surefire Test Sequence..

2008-06-28 Thread Niranjan Deshpande
I need customisation because, there is a single test class that has a a testsuite, in which all the classes are lined up. so if i call this class i will run all the classes. also this class does some property initialisation. so i need it to run and inturn exe all the other tests will have a look a