The following comment has been added to this issue:
Author: Chad Brandon
Created: Wed, 30 Jun 2004 4:53 PM
Body:
Thanks for fixing it. Sure...I'll do that next time.
---------------------------------------------------------------------
View this comment:
http://jira.codehaus.org/browse/MPASPECTJ-11?page=comments#action_21218
---------------------------------------------------------------------
View the issue:
http://jira.codehaus.org/browse/MPASPECTJ-11
Here is an overview of the issue:
---------------------------------------------------------------------
Key: MPASPECTJ-11
Summary: aspectj:test-compile goal should check for
pom.build.unitTestSourceDirectory
Type: Bug
Status: Closed
Priority: Major
Resolution: FIXED
Original Estimate: 10 minutes
Time Spent: Unknown
Remaining: 10 minutes
Project: maven-aspectj-plugin
Versions:
3.1
Assignee: Carlos Sanchez
Reporter: Chad Brandon
Created: Wed, 30 Jun 2004 10:43 AM
Updated: Wed, 30 Jun 2004 4:53 PM
Environment: maven-1.0-rc4
Description:
The aspectj plugin should check for the presence of the unit test
source directory before calling aspectj:compile. This is useful in cases where you
want to define your preGoal in your subproject's maven.xml and subprojects don't have
any tests defined. Otherwise you'll get a error telling you the
'maven.test.compile.src.set' property doesn't exist. This is easy to add, just add the
following check to the aspectj:test-compile goal:
<j:set var="testSourceDir" value="${pom.build.unitTestSourceDirectory}"/>
<ant:available
property="hasTestDir"
file="${testSourceDir}"/>
<j:if test="${shouldWeave == 'true' and hasTestDir != null and testSourceDir !=
''}">
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]