Jérémie Bresson

Results 204 comments of Jérémie Bresson
trafficstars

Well we do not rely on `@lombok` in our codebase (and personally I would not like to add it), but I guess you are generating some code (could you indicate...

As I told, there is no lombok support right now... You can still add the annotations to the generated project after code generation (see the guides [project lombok website](https://projectlombok.org/)) and...

This sounds good (even if I am not really aware of what you mean with specifying "the theme" in that context). Right now I am moving forward with very simple...

I can help you with the setup. Ping me. You will need: * An account on `sonatype` (Nexus: https://oss.sonatype.org, Jira: https://issues.sonatype.org/ -- it is the same login) * With the...

The problem is that the project you create is a Java project: ```xml org.eclipse.jdt.core.javabuilder org.eclipse.jdt.core.javanature ``` So Eclipse doesn't apply either the Maven or the Gradle tooling => which is...

See also the discussion here in #1249

One of my main motivation for using Jbang is to simplify the commands I have to enter. `myScript --some input` Instead of: `java -jar some-lib.jar --some input` (and this is...

I disagree with this implementation: https://github.com/jbangdev/jbang/blob/ef362429c1c9a60aec8200b3f3184cbb74160c98/src/main/java/dev/jbang/dependencies/DependencyUtil.java#L307-L314 And the test: https://github.com/jbangdev/jbang/blob/ef362429c1c9a60aec8200b3f3184cbb74160c98/src/test/java/dev/jbang/dependencies/DependencyResolverTest.java#L31-L34 Or at least it is not compatible with Gradle definition of the `+` notation.

A workaround is to use `[10.3.0,10.4.0)` instead of `10.3.+`. And because of issue #1268, the `@Grab` notation must be used: ```java ///usr/bin/env jbang "$0" "$@" ; exit $? //DEPS org.apache.groovy:groovy:4.0.0...

In method `dev.jbang.source.ScriptSource.extractDependencies(String)` Probably the code `line.split(" // ")[0].split("[ ;,]+")` should be rewritten to take the first element, parse it and check if there is more to parse. @maxandersen WDYT...