Alexander Sedov

Results 22 comments of Alexander Sedov

I've created a simple Gradle version of the plugin https://github.com/sedovalx/gradle-aspectj-binary. Feel free to use it as a sample, fork it or issue a pull request. I had a plan to...

https://github.com/eveoh/gradle-aspectj is definitely a more mature project. But it works with java sources only. In my case it was a downside. But if it is not an issue you'd better...

Anyway here is the setup for the jcabi-aspects with https://github.com/sedovalx/gradle-aspectj-binary. 1. Add the plugin to the buildscript's classpath. ``` buildscript { repositories { jcenter() } dependencies { classpath "com.github.sedovalx.gradle:gradle-aspectj-binary:$pluginVersion" }...

Btw, is there a way (in Slick 3.0.0) to execute an sql from a String variable?

@cvogt thanks for response! Is there a way to convert StaticQuery to DBIOAction? Or should I use deprecated methods like `db.withSession` and `query.list` as before?

Basically, the `REMOVE` change on the `Group#resource` link is not generated during the explicit deletion of the resource in case of the `onTargetDelete = FAIL` link constraint.

@feels-serene frankly, I don't use this plugin anymore in my projects and don't plan to support it further. I encourage you to fork it and adopt for your needs.

I believe the plugin is not compatible with Gradle 7. From the error message, I can tell that they hardened the requirements for task input properties - they should be...

AFAIK lombok works during the compilation of sources and the plugin works with the compiled classes. So that means the plugin works after the lombok. It's just a theory, I...