[jira] Closed: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-07-25 Thread Vamsavardhana Reddy (JIRA)
[ http://issues.apache.org/jira/browse/GERONIMO-1781?page=all ] Vamsavardhana Reddy closed GERONIMO-1781. - > FileSystemRepository not able to handle entry with version number which is a > single

[jira] Resolved: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-07-25 Thread Vamsavardhana Reddy (JIRA)
has taken care of it. In AG1.0, FileSystemRepository will still need the fix suggested in the issue description above. > FileSystemRepository not able to handle entry with version number which is a > single

[jira] Commented: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-07-21 Thread Jason Dillon (JIRA)
not able to handle entry with version number which is a > single digit > - > > Key: GERONIMO-1781 > URL: http://issues.apache.org/jira/browse/GERONIMO-1781 >

[jira] Updated: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-07-16 Thread Alan Cabrera (JIRA)
probability, 1.1.2 patch. > FileSystemRepository not able to handle entry with version number which is a > single digit > - > > Key: GERONIMO-1781 > URL: http:/

[jira] Updated: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-07-02 Thread Dain Sundstrom (JIRA)
[ http://issues.apache.org/jira/browse/GERONIMO-1781?page=all ] Dain Sundstrom updated GERONIMO-1781: - Assign To: (was: Dain Sundstrom) > FileSystemRepository not able to handle entry with version number which is a > single

[jira] Updated: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-06-14 Thread Dain Sundstrom (JIRA)
[ http://issues.apache.org/jira/browse/GERONIMO-1781?page=all ] Dain Sundstrom updated GERONIMO-1781: - Fix Version: 1.1.1 (was: 1.1) > FileSystemRepository not able to handle entry with version number which is a > single

[jira] Updated: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-04-06 Thread Dain Sundstrom (JIRA)
[ http://issues.apache.org/jira/browse/GERONIMO-1781?page=all ] Dain Sundstrom updated GERONIMO-1781: - Component: kernel Assign To: Dain Sundstrom > FileSystemRepository not able to handle entry with version number which is a > single

Re: FileSystemRepository not able to handle entry with version number which is a single digit.

2006-03-27 Thread Vamsavardhana Reddy
Done. -VamsiOn 3/27/06, Dain Sundstrom <[EMAIL PROTECTED]> wrote: Can you file a JIRA on this?IIRC this is a pattern taken directly from maven, so we may want toget them to patch it also.-dainOn Mar 24, 2006, at 5:16 AM, Vamsavardhana Reddy wrote:> Settled with Pattern.compile("(.+)/(.+)s/(.+)-([

[jira] Created: (GERONIMO-1781) FileSystemRepository not able to handle entry with version number which is a single digit

2006-03-27 Thread Vamsavardhana Reddy (JIRA)
FileSystemRepository not able to handle entry with version number which is a single digit - Key: GERONIMO-1781 URL: http://issues.apache.org/jira/browse/GERONIMO-1781 Project: Geronimo

Re: FileSystemRepository not able to handle entry with version number which is a single digit.

2006-03-27 Thread Dain Sundstrom
Can you file a JIRA on this? IIRC this is a pattern taken directly from maven, so we may want to get them to patch it also. -dain On Mar 24, 2006, at 5:16 AM, Vamsavardhana Reddy wrote: Settled with Pattern.compile("(.+)/(.+)s/(.+)-([0-9].*)\\.([^0-9] +)") for now. -Vamsi On 3/24/06, Va

Re: FileSystemRepository not able to handle entry with version number which is a single digit.

2006-03-24 Thread Vamsavardhana Reddy
Settled with Pattern.compile("(.+)/(.+)s/(.+)-([0-9].*)\\.([^0-9]+)") for now. -VamsiOn 3/24/06, Vamsavardhana Reddy <[EMAIL PROTECTED]> wrote: Pattern.compile("(.+)/(.+)s/(.+)-([^-]+)\\.([^0-9]+)")  should do a better job. -VamsiOn 3/24/06, Vamsavardhana Reddy < [EMAIL PROTECTED]> wrote: I see t

Re: FileSystemRepository not able to handle entry with version number which is a single digit.

2006-03-24 Thread Vamsavardhana Reddy
Pattern.compile("(.+)/(.+)s/(.+)-([^-]+)\\.([^0-9]+)")  should do a better job. -VamsiOn 3/24/06, Vamsavardhana Reddy <[EMAIL PROTECTED]> wrote: I see the following in FileSystemRepository.java Pattern.compile("(.+)/(.+)s/(.+)-([0-9].+)\\.([^0-9]+)"); This reqular _expression_ is not matching an

FileSystemRepository not able to handle entry with version number which is a single digit.

2006-03-23 Thread Vamsavardhana Reddy
I see the following in FileSystemRepository.java Pattern.compile("(.+)/(.+)s/(.+)-([0-9].+)\\.([^0-9]+)"); This reqular _expression_ is not matching an entry like the following. group/jars/artifact-1.jar Here the version number is "1", a single digit.