Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0-beta-1, 1.0-beta-2, 1.0-beta-3
-
Fix Version/s: 1.0-beta-4
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
The compile dependency on ant 1.6.5 libraries means that these are dragged in when xharness is invoked via the maven antrun plugin. This may cuase complications when antrun is configured to use a different ant version, e.g. ant 1.7.x
As a workaround, the ant and ant-junit dependencies can be excluded from the xharness dependency:
<dependency>
<groupId>org.codehaus.xharness</groupId>
<artifactId>xharness</artifactId>
<version>1.0-beta3</version>
<exclusions>
<exclusion>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>ant</groupId>
<artifactId>ant-junit</artifactId>
</exclusion>
</exclusions>
</dependency>
Activity
Gregor Heine
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Gregor Heine [ greheine ] |
Gregor Heine
made changes -
| Affects Version/s | 1.0-beta-2 [ 15427 ] | |
| Fix Version/s | 1.0-beta-4 [ 15429 ] | |
| Affects Version/s | 1.0-beta-1 [ 15426 ] | |
| Affects Version/s | 1.0-beta-3 [ 15428 ] |
Gregor Heine
made changes -
| Status | Open [ 1 ] | In Progress [ 3 ] |
Gregor Heine
made changes -
| Resolution | Fixed [ 1 ] | |
| Status | In Progress [ 3 ] | Resolved [ 5 ] |
Gregor Heine
made changes -
| Status | Resolved [ 5 ] | Closed [ 6 ] |