Re: APT vs Markdown formats for site docs

2021-02-01 Thread David Jencks
I looked for a few minutes at https://github.com/apache/logging-log4j2 and found 3 or 4 markdown pages under site that didn’t appear to have anything that would be hard to write in AsciiDoc. The root level pages such as README.md, if written in (limited) AsciiDoc, will display nicely at GitHub.

Re: APT vs Markdown formats for site docs

2021-02-01 Thread David Jencks
Asciidoctor Maven Tools is the more supported way of using Asciidoctor from maven, either directly or through Doxia. https://docs.asciidoctor.org/maven-tools/latest/ (docs) https://github.com/asciidoctor/asciidoctor-maven-plugin

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Ralph Goers
Log4j didn’t switch everything. A couple pages had to be left as Markdown for things AsciiDoc doesn’t support, although at the moment I don’t remember what those things were at the moment. Ralph > On Feb 1, 2021, at 6:30 AM, Gary Gregory wrote: > > FYI, over at Log4j, we switched to

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Gary Gregory
FYI, over at Log4j, we switched to Asciidoc. Gary On Mon, Feb 1, 2021, 05:19 Artem Krosheninnikov < artem.krosheninni...@gmail.com> wrote: > Hello there, whilst looking at some docs in maven-enforcer-plugin, I found > .apt.vm format not very convenient and developer-friendly, especially for a >

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Andres Almiray
FWIW Doxia supports Asciidoc pretty well. You just have to add an extra dependency for it to find Asciidoctorj, as demonstrated at https://github.com/kordamp/pomchecker/blob/master/pom.xml#L200-L227 You can mix all kind of supported formats if needed. Or use only asciidoc, the choice is yours

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Artem Krosheninnikov
I agree that there are several implementations thus it may be not a good choice. FML looks very ancient from my point of view but asciidoc is more or less a standard format in docops community. It's not that everything should be immediately converted to another format, just trying to understand

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Paul Hammant
https://github.com/asciidoctor/jekyll-asciidoc-quickstart .. find “GitHub pages” in page. My blog used to be in textile - overnight GHP dropped support so I had to batch convert hundreds to markdown. That was years back. I might have preferred asciidoc, and if it is supported that’s great, but I

Re: jvm.config and spaces

2021-02-01 Thread Romain Manni-Bucau
Why? This is not about changing IFS for maven opts but for jvm.config read then all the script still uses the default. It is very close to just writing the jvm.config parsing instead of just handling it with a pipe bypassing needed escaping, no? Romain Manni-Bucau @rmannibucau

Re: jvm.config and spaces

2021-02-01 Thread Michael Osipov
Am 2021-02-01 um 11:47 schrieb Benjamin Marwell: Eval is probably needed, just look at how open liberty merges those lines [1]. As a user, I would expect spaces and comments to be supported. [1]:

Re: jvm.config and spaces

2021-02-01 Thread Romain Manni-Bucau
+1 to do something close to IBM script or have a graalvm light launcher (if we manage to make it < 10M but I doubt :(). Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github

Re: jvm.config and spaces

2021-02-01 Thread Benjamin Marwell
Eval is probably needed, just look at how open liberty merges those lines [1]. As a user, I would expect spaces and comments to be supported. [1]:

Re: jvm.config and spaces

2021-02-01 Thread Michael Osipov
Am 2021-01-29 um 21:51 schrieb Romain Manni-Bucau: Hi all, Is it intended our jvm.config impl does not support spaces? -Dfoo=bar dummy "-Dfoo=bar dummy" '-Dfoo=bar dummy' -Dfoo=bar\ dummy Likely related to https://issues.apache.org/jira/browse/MNG-4559. I see no way to solve this with POSIX

Re: CLI enhancements

2021-02-01 Thread Michael Osipov
Am 2021-01-21 um 18:36 schrieb Guillaume Nodet: Hi everyone Yesterday, I've released Jansi 2.2.0 which incorporates a few bug fixes / enhancements. I pushed a few PRs to enhance the terminal support in Maven : * [MSHARED-973] Upgrade jansi to 2.2.0

Re: APT vs Markdown formats for site docs

2021-02-01 Thread Benjamin Marwell
Markdown is not a "standard" or "standardized". Even worse, different implementations have different feature sets. Thus my -1 for md. But another format might be feasible, really. fml looks verbose. Asciidoc might be a sane choice here. It was specially designed for technical documentation and

APT vs Markdown formats for site docs

2021-02-01 Thread Artem Krosheninnikov
Hello there, whilst looking at some docs in maven-enforcer-plugin, I found .apt.vm format not very convenient and developer-friendly, especially for a newcomer. Is it a standard for all maven plugins or were there any discussions on using another format? I see that maven-parent-34 has several