Hi,
I have a custom tag in the issuetracker plugin:
<define:tag name="issueurl">
[...]
<j:invokeStatic var="issueURL" method="getIssueURL"
className="org.apache.maven.issuetracker.IssueFinder">
<j:arg type="java.lang.String" value="${issueTrackingUrl}"/>
<j:arg type="java.lang.String" value="${issue}"/>
<j:arg type="java.lang.String" value="${template}"/>
</j:invokeStatic>
[...]
</define:tag>
This tag calls some java class.
Now, I'm trying to use this tag from the changes plugin. I get a
ClassNotFoundException on org.apache.maven.issuetracker.IssueFinder.
This does not happen with <define:jellybean> (as testified by the
artifact plugin tags).
I'm not sure how Maven handles classpaths between plugins.
Any idea?
Note: The reason is use invokeStatic instead of useBean is because I've
tried useBean and could not make it work (there were some strange
errors).
Thanks
-Vincent
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]