Tomas Bjerre

Results 402 comments of Tomas Bjerre

This code may help understand it: https://github.com/tomasbjerre/violations-git-lib/blob/master/src/main/java/se/bjurr/violations/git/ViolationsGit.java It will parse git commits to find the files that differ. And count reported errors on changed lines in those files. You would...

This works: ``` ./gradlew violations -i -PdiffTo=diff_check -PdiffFrom=master ``` But I agree that the from/to seems more logical in your command!

Yes should probably be opposite.

Converting to markdown sounds like the way to go here.

I would need the example in text format.

See this test case: https://github.com/tomasbjerre/git-changelog-lib/blob/d42e8fa63405b1d152e47d39dd48643bde82b1f8/src/test/java/se/bjurr/gitchangelog/api/GitChangelogApiTest.java#L310 Where git history is: ``` * 4c6e078 - doing change 2 * 05866f7 - Revert "doing change 1" * 114a917 - doing change 1 *...

I think it is possible to add more information in this exception without me providing a reproduceable example. I can trace it to: https://github.com/oracle/graal/blob/0d67c739da8f4ee40ed9796185205ed54935c06b/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/annotation/SubstrateAnnotationExtractor.java#L466C23-L466C48 Perhaps `throw new AnnotationExtractionError(e);` can be...

I am new to Graalvm, I don't know what `SVM internals` are. I would suggest you include enough information in the error in order to determine that. No I have...

This is our first attempt at trying to use Graalvm and Spring Native. So we have not really changed anything. I tried to compile "ahead of time" and also run...

I noticed that if I remove this dependency: ``` implementation "com.sun.xml.ws:jaxws-rt:4.0.1" ``` I will get a successful build. But will later get a `ClassNotFoundException` at runtime: `Caused by: javax.xml.ws.WebServiceException: Provider...