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, Vamsavardhana Reddy <[EMAIL PROTECTED]> wrote:
Pattern.compile("(.+)/(.+)s/(.+)-([^-]+)\\.([^0-9]+)") should do a
better job.
-Vamsi
On 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 entry like the following.
group/jars/artifact-1.jar
Here the version number is "1", a single digit.