Re: [Geometry] Git cleanup

2021-06-04 Thread Benjamin Marwell
git branch -a > there are about "dependabot" lines that clutter the output. > > Regards, > Gilles > > > > > You probably have googled dependabot at this point, but just in case here > > is a quick overview: > > > > https://github.blog/2020-06

Re: [Geometry] Git cleanup

2021-06-03 Thread Benjamin Marwell
is a quick overview: https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/ On Thu, 3 Jun 2021, 19:43 Gilles Sadowski, wrote: > Le jeu. 3 juin 2021 à 19:18, Benjamin Marwell a > écrit : > > > > It's a bot which creates a PR on GitHub for each

Re: [Geometry] Git cleanup

2021-06-03 Thread Benjamin Marwell
It's a bot which creates a PR on GitHub for each dependency update. You won't see it in the Apache git probably. You can disable the bot using a config file or exclude some dependencies etc. Most projects use it by now, but often major updates are being closed and manually updated instead. On

Re: [text][geometry] DoubleFormats utility

2021-05-13 Thread Benjamin Marwell
I'm not a commons committer, but I think it moved to Java 8, where you already have the same functionality available in the JDK. NumberFormat and DecimalFormat [1] will do the same already, if I am not mistaken. Ben 1: https://www.baeldung.com/java-number-formatting On Thu, 13 May 2021,

Re: [math] working on increasing performance for Math3

2021-05-08 Thread Benjamin Marwell
Instead of using byte buddy, why not just maven multi release jars? *1 The Java9+ impl will go to META-INF/java9 or so. We did that in the maven-jlink-plugin for example. *2 Will be much faster and work on Java 16+. Much easier to rest. Drawback: bad IDE support 1:

Re: [VFS] unexpected 'relative path' in verify.groovy

2021-04-25 Thread Benjamin Marwell
s-compress solves this problem. The error message is not helpful, I find it misleading. Would you accept this as an issue? Am Sa., 24. Apr. 2021 um 23:49 Uhr schrieb Benjamin Marwell : > > Hi everyone, > > I think I figured part of it out myself. > The wiki page > https://cwiki.a

Re: [VFS] unexpected 'relative path' in verify.groovy

2021-04-24 Thread Benjamin Marwell
. Ben Am Sa., 24. Apr. 2021 um 23:22 Uhr schrieb Benjamin Marwell : > > Hi everyone, > > I tried to use vfs2 in a verify.groovy script like this: > > def fsManager = VFS.manager > def file = > fsManager.resolveFile("gz:tar:${basedir}/target/dependencies/vfs-invo

[VFS] unexpected 'relative path' in verify.groovy

2021-04-24 Thread Benjamin Marwell
Hi everyone, I tried to use vfs2 in a verify.groovy script like this: def fsManager = VFS.manager def file = fsManager.resolveFile("gz:tar:${basedir}/target/dependencies/vfs-invoker-groovy-1.0.0-SNAPSHOT.tar!/hello.txt") While this works in a junit+groovy maven test case, it won’t in a