Lars Grefer
Lars Grefer
This should have been fixed in https://github.com/freefair/gradle-plugins/commit/6aec34a188b4a55240fd50f78aedd13fc14f59b6#diff-63fae8c516a4967b0d7d6d9f377498a917d53ddd44778ae584a0c5078bed416f Which version of the Plugin are you using?
@mrozanc Can you share an example project that reproduces the problem? Or can you at least share the full stack trace for the warning?
By default, the library extracts the bundled dart-sass compiler into a temporary directory under `${java.io.tmpdir}/de.larsgrefer.sass.embedded.connection.BundledPackageProvider` and executes it from there. The extraction itself seemed not to produce an error, but...
Could be this bug from lombok itself: https://github.com/projectlombok/lombok/issues/2829
Your gradle configuration looks good to me. (Manually creating the `aspect` Configuration should not be necessary, but it should not hurt either) Could you run the build with `--info`? With...
Can someone of you provide an example project which I can use to debug this?
I was able to reproduce it. Apparently, the AspectJ compiler does not like it, if you feed itself into its aspectpath. On the one hand, I'd argue that it makes...
When using the `io.freefair.aspectj` plugin, only sources in `src/*/aspectj` are affected by default. `src/*/aspectj` is compiled and woven by ajc, `src/*/java` is compiled by javac and therefore NOT woven. When...
When using Lombok, you must use the post-compile-weaving plugin, as Lombok does not support ajc. An example for compile-time-weaving with the `io.freefair.aspectj` plugin while also using `src/main/java`, can be found...