Issue Details (XML | Word | Printable)

Key: MPTEST-47
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Lukas Theussl
Reporter: Henning Schmiedehausen
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Maven 1.x Test Plugin

It should be possible to add additional elements to the test classpath

Created: 08/Mar/05 11:48 AM   Updated: 24/Mar/06 06:57 PM
Component/s: None
Affects Version/s: None
Fix Version/s: 1.8

Time Tracking:
Original Estimate: 10 minutes
Original Estimate - 10 minutes
Remaining Estimate: 10 minutes
Remaining Estimate - 10 minutes
Time Spent: Not Specified
Remaining Estimate - 10 minutes

File Attachments: 1. Text File maven-test.patch (3 kB)

Environment:
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_07-b05)
Java HotSpot(TM) Client VM (build 1.4.2_07-b05, mixed mode)
Issue Links:
Duplicate


 Description  « Hide
(this is basically a rehash of MPTEST-16)

For porting unit tests from ant to maven, it was necessary to add certain pre-produced jars to the test classpath. This is not possible with the 1.6.2 plugin. My solution was (as the solution of some other users), to add a property which can
be assigned and is then added to the classpath. This allows me to do e.g.

maven.test.classpath= ${basedir}/test/cpload/test1.jar;${basedir}/test/cpload/test2.jar

where test1.jar and test2.jar are jars that must not be present in the build phase but need to present in the test phase.

There have different solution been discussed. However:

  • adding something to the "resources" part of the POM makes it impossible to automatically download such a jar
    through maven.
  • adding a property to the dependencies makes it impossible to ship such a test jar with the distribution and reference
    it locally.

and still we currently have no solution at all. I'd therefore propose the attached patch which allows all three test goals in maven-test-plugin (test:single, test:test and test:match) to evaluate a property variable called maven.test.classpath. This
variable (if nonempty) is transferred to a <pathelement path="..."/> element and can therefore contain multiple elements (separated by e.g. ";").

The attached patch is IMHO the easiest fix for this problem with seems to affect a lot of maven users.



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
There are no comments yet on this issue.