Alexander Sparkowsky

Results 15 comments of Alexander Sparkowsky

I'm running into similar issues where I have to pull dependencies from a private repository in order to publish the package for rpm and maven. I wonder if it would...

On the other hand I wonder if this change would have any 'breaking' side-effects for existing projects.

> Can you confirm what you exactly mean by this? I'm trying to build an `AwsCdkConstructLibrary` that publishes a JS (NPM) and Java (Maven) artifact to my (private) GitHub repository....

As I mentioned above providing `yarn install` with the credentials is only have of the solution. I've no idea how to also pass this information to the maven (and all...

@jeromevdl I like your idea of only providing slf4j support and not forcing any framework to be used. While writing this RFC this conclusion also came to my mind. So...

Currently I'm looking into error handling in Spring Boot applications and found RFC 7807 to be very interesting. I like that by default it allows me to give meaningful and...

My team cannot wait for this to become available. It's currently hard for us to develop/debug Lambda functions in Java 21 locally since we always relied on the AWS Toolkit...

I ran into the same issue. In my case using the AWS Extension behave strange. Luckily I found this issue.

Digging deeper I can already see that there are some generated files that are different on each build. So it would not be as easy as just taking care of...

Here is what I did: I created a very simple Quarkus project using: ``` mvn archetype:generate \ -DarchetypeGroupId=io.quarkus \ -DarchetypeArtifactId=quarkus-amazon-lambda-archetype \ -DarchetypeVersion=3.22.1 ``` I then built two `function.zip` using `mvn...