Stanimir Stamenkov

Results 102 comments of Stanimir Stamenkov

I haven't experienced `ConcurrentModificationException` but I'm consistently seeing in Jenkins builds (vs. local builds): ``` [INFO] Storing buildNumber: 2023-04-06 12:42:09 at timestamp: 1680777729152 [WARNING] Cannot get the branch information from...

> I guess it is related to the way the Jenkins Git plugin appears to check out a project: > > Basically a detached HEAD Then I found this [answer](https://stackoverflow.com/a/39300149/4166251):...

Sample: [macOS-BigSur-and-Monterey-Windows.zip](https://github.com/ful1e5/apple_cursor/files/14576426/macOS-BigSur-and-Monterey-Windows.zip)

Not sure if it is possible, but I would like the possibility to define a specific execution ID in a submodule and then target that from the command line: ```xml...

[resource-paths-2.zip](https://github.com/eclipse-ee4j/jaxrs-api/files/5155174/resource-paths-2.zip) – Includes a `cxf` profile: ``` mvn package -P !jersey,cxf ``` The three implementations (Jersey, RESTEasy, and CXF) appear to behave the same – as per current spec, though...

As far as I can tell the spec is currently broken in a way it makes just a specific case work (I would say inadvertently). I think the spec could...

The problem I see is not related to backtracking but using the wrong value to match against: request URI path = `/rest/foo` _U_ = final capturing group not yet matched...

Not sure what you consider backtracking here. My problem is the resource method is not matched, although there's no ambiguity. Here are both examples: _Not working_ - `@Path("/rest/foo") BarResource` -...

> Step 1e: > > > Sort E using the number of literal characters in each member as the primary key (descending order) > > Tells you to use `/rest/foo`....

Ah, yes. I must have missed that. Very unfortunate. I still think the given original case should just work, and I don't think the matching would suffer a significant performance...