Jérémie Bresson
Jérémie Bresson
I have started to experiment with BND tools on an hello-world project (days are too short to achieve everything I would like). I will post some feedback here. --- Alternative:...
I have started with the `org.asciidoctor.ast` package. > If we split it up, should we already take modularization into account and try to make the packages disjoint? Any Idea what...
I have started something here: https://github.com/jmini/asciidoctorj/tree/patch-1 With commit [8742acd](https://github.com/jmini/asciidoctorj/commit/8742acdb039e1fcfdb49cc8fdf314a63ca8df5cd) I have moved the `org.asciidoctor.ast` package to the `asciidoctorj-api` project.
> The split package problem with Java 9 modules would require us to not share any packages between two jars, i.e. if org.asciidoctor.ast is in the api module, org.asciidoctor.ast.impl cannot...
The packages also plays an important role for OSGi. I need to perform some tests in this area (since 2015 I stopped to use Equinox when I stop to work...
I have started a first Pull Request with the move of `org.asciidoctor.ast` to a new project: `asciidoctorj-api`. https://github.com/asciidoctor/asciidoctorj/pull/590 This a first step to solve this issue, but this is not...
While I was working on an alternative implementation, I noticed that it would be nice if the method signature for method returning list would be changed. The generics parameter should...
Thank you for your feedback... What is your workflow for the multiple changes: * One PR with multiple commits * One PR with a single commit (for the subtopics) *...
I have pushed more commits to #590. The discussed change with wildcard and other cleanup commits that I made by reviewing the code. (No worries about your review pace, for...
In order to write tests I need that are decoupled from the parser, I need to be able to instanciate a AST based on the ruby implementation from scratch. See...