You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by bo...@werken.com on 2003/02/02 08:45:45 UTC

[maven-bug] Updated: (MAVEN-241) Licence report needs to be updated to new system

The following issue has been updated:

    Updater: Ben Walding (mailto:jakarta@walding.com)
       Date: Sun, 2 Feb 2003 1:45 AM
    Changes:
[Status] changed from [Assigned] to [In Progress]

---------------------------------------------------------------------
For a full history of the issue, see:

  http://jira.werken.com/secure/ViewIssue.jspa?key=MAVEN-241&page=history

---------------------------------------------------------------------
View the issue:

  http://jira.werken.com/secure/ViewIssue.jspa?key=MAVEN-241


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MAVEN-241
    Summary: Licence report needs to be updated to new system
       Type: Bug

     Status: In Progress
   Priority: Minor

 Time Spent: Unknown
   Estimate: 1 hour

    Project: maven
  Component: None

   Assignee: Ben Walding
   Reporter: Ben Walding

    Created: Sat, 1 Feb 2003 11:40 PM
    Updated: Sun, 2 Feb 2003 1:45 AM

Description:
The licence plugin is not part of Pete Kazmier's new reporting setup.

Make it so.


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.werken.com/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


Re: New "tools" i.e. Jellyish beans

Posted by Ben Walding <be...@walding.com>.
Go for it.


Henri Yandell wrote:

>Which would probably just call reverseDelimitedString and then split that
>to save re-implementing anything :)
>
>Hen
>
>On Sun, 2 Feb 2003, Henri Yandell wrote:
>
>  
>
>>On Sun, 2 Feb 2003, Ben Walding wrote:
>>
>>    
>>
>>>2. StringTool created
>>>Jexl can be a bit verbose for some string transformations. As such I've
>>>created this bean as a grabbag of string manipulation routines.
>>>At present there is one method
>>>
>>>List splitStringAtLastDelimiter(String input, String value)
>>>
>>>org.apache.Vector, "." yields a list  containing 2 elements -
>>>"org.apache" and "Vector"
>>>      
>>>
>>Mind if I nick this for StringUtils?
>>
>>Well, I'd probably make it:
>>
>>reverseSplit(String input, String delimiter, int count)
>>
>>and you'd do:
>>
>>reverseSplit("org.apache.Vector", ".", 1);
>>
>>Hen
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: turbine-maven-dev-unsubscribe@jakarta.apache.org
>>For additional commands, e-mail: turbine-maven-dev-help@jakarta.apache.org
>>
>>
>>    
>>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: turbine-maven-dev-unsubscribe@jakarta.apache.org
>For additional commands, e-mail: turbine-maven-dev-help@jakarta.apache.org
>
>
>  
>



Re: New "tools" i.e. Jellyish beans

Posted by Henri Yandell <ba...@generationjava.com>.
Which would probably just call reverseDelimitedString and then split that
to save re-implementing anything :)

Hen

On Sun, 2 Feb 2003, Henri Yandell wrote:

>
>
> On Sun, 2 Feb 2003, Ben Walding wrote:
>
> > 2. StringTool created
> > Jexl can be a bit verbose for some string transformations. As such I've
> > created this bean as a grabbag of string manipulation routines.
> > At present there is one method
> >
> > List splitStringAtLastDelimiter(String input, String value)
> >
> > org.apache.Vector, "." yields a list  containing 2 elements -
> > "org.apache" and "Vector"
>
> Mind if I nick this for StringUtils?
>
> Well, I'd probably make it:
>
> reverseSplit(String input, String delimiter, int count)
>
> and you'd do:
>
> reverseSplit("org.apache.Vector", ".", 1);
>
> Hen
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-maven-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-maven-dev-help@jakarta.apache.org
>
>


Re: New "tools" i.e. Jellyish beans

Posted by Henri Yandell <ba...@generationjava.com>.

On Sun, 2 Feb 2003, Ben Walding wrote:

> 2. StringTool created
> Jexl can be a bit verbose for some string transformations. As such I've
> created this bean as a grabbag of string manipulation routines.
> At present there is one method
>
> List splitStringAtLastDelimiter(String input, String value)
>
> org.apache.Vector, "." yields a list  containing 2 elements -
> "org.apache" and "Vector"

Mind if I nick this for StringUtils?

Well, I'd probably make it:

reverseSplit(String input, String delimiter, int count)

and you'd do:

reverseSplit("org.apache.Vector", ".", 1);

Hen


New "tools" i.e. Jellyish beans

Posted by Ben Walding <be...@walding.com>.
Unless you keep careful track of my commits, you'll have missed the 
following:


1. DVSLPathTool no longer contains getPackagePath
see JDeveloper's -  org.apache.maven.jdeveloper.JavaSourceTool

Rationale: JDepend in the root classloader was causing havoc in the 
jdepend plugin.  There was no real requirement for it to be at that level
as only 1 plugin used it (JDeveloper), and it should have been 
implemented as a tag in any event.  Ultimately it should be exposed as a 
tag, YAGNI says... do it when it's needed. (YAGNI - You ain't gonna need it)


2. StringTool created
Jexl can be a bit verbose for some string transformations. As such I've 
created this bean as a grabbag of string manipulation routines.
At present there is one method

List splitStringAtLastDelimiter(String input, String value)

org.apache.Vector, "." yields a list  containing 2 elements - 
"org.apache" and "Vector"



Cheers,

Ben