RE: [m2] BUILD ERROR maven-changelog-plugin does not exist - Read your email

2007-01-26 Thread Lageson,Thomas M
Jens, This is the third time I have responded to your exact same email. Does it not work? If not, give us more information. - Tom -Original Message- From: Lageson,Thomas M Sent: Wednesday, January 24, 2007 3:31 PM To: Maven Users List Subject: RE: [m2] BUILD ERROR maven-changelog

RE: [m2] BUILD ERROR maven-changelog-plugin does not exist

2007-01-24 Thread Lageson,Thomas M
Below is my response from last Friday to your original question. - Tom -Original Message- From: Lageson,Thomas M Sent: Friday, January 19, 2007 8:41 AM To: Maven Users List Subject: RE: [m2] BUILD ERROR maven-changelog-plugin does not exist Put this in the pom.xml

M2, Junit 4.1 - Test names

2007-01-22 Thread Lageson,Thomas M
I have Maven 2 working with Junit 4.1 using the surefire 2.3-SNAPSHOT. The only thing that isn't working as expected is that the test classes need to have a name that ends in Test (e.g. MyAppTest.java). Having names like MyAppTest1.java or MyApp.java means that Maven can't seem to recognize that a

RE: [m2] BUILD ERROR maven-changelog-plugin does not exist

2007-01-19 Thread Lageson,Thomas M
Put this in the pom.xml. ... apache.snapshots http://people.apache.org/maven-snapshot-repository/ In the reporting section of your pom.xml: ... ... org.apache.maven.plugins maven-change

RE: M2 & Junit4.1: Problems using the 2.3 Snapshot of maven-surefire-plugin

2007-01-10 Thread Lageson,Thomas M
Tom Huybrechts [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 10:09 AM To: Maven Users List Subject: Re: M2 & Junit4.1: Problems using the 2.3 Snapshot of maven-surefire-plugin Can you run with -X to see if the junit4 provider is being used ? Tom On 1/10/07, Lageson,Thomas M

M2 & Junit4.1: Problems using the 2.3 Snapshot of maven-surefire-plugin

2007-01-10 Thread Lageson,Thomas M
I have noticed a couple of things in my testing of the 2.3 Snapshot of the maven-surefire-plugin when going against JUnit 4.1 with Maven2. 1)It does not recognize the setup (@Before annotation). 2) It did not recognize test method names (@Test annotation) that didn't have a m

ubjerjar and security certs - help needed?

2005-01-31 Thread Lageson,Thomas M
I am using the uberjar plugin to generate my runnable jar. However, my code makes calls to the code in sunjce_provider.jar, US_export_policy.jar and local_policy.jar. I am getting the following error (abbreviated): ...ExceptionInInitializerError: java.lang.SecurityException: Cannot set up certs

Why install-snapshot and not just install?

2005-01-28 Thread Lageson,Thomas M
Why did the designers of Maven setup a different goal for installing a snapshot (install-snapshot)? Couldn't they have read the version to see if it was equal to "snapshot" and simply done the additional logic needed for snapshots? Any workarounds out there that essentially do that? Or am I mi

Maven with ClearCase - Anyone using this combo?

2004-12-08 Thread Lageson,Thomas M
I am using Maven 1.0 with ClearCase LT. Basically I have a maven.xml in the root project that has the following code in it: This goes and gets the LATEST from the main branch according to the config spec file. How do I AUTOMATICALLY get a previous version (or label) other than

RE: Maven generated EAR :java.lang.NoClassDefFoundError: com/ibm/ejs/container/EJSWrapperBase

2004-10-15 Thread Lageson,Thomas M
The com/ibm/ejs/* classes are the ibm generated classes that you get when you generate the ejb classes from within WSAD. Unless you actually store those generated files within your scm they won't be available. Maven doesn't know how to generate them. I ended up storing the generated ejb files in

javac compile errors output

2004-09-16 Thread Lageson,Thomas M
My company has an in-house developed build and deploy process based around Maven. Our web site uses a windows script file (.wsf) to call the Maven process. The relevant lines are executeMaven="maven.bat -d " & mavenPath & " " & goal oShell.Exec(executeMaven) We have encountered a c