Kevin Brightwell
Kevin Brightwell
This updates the flyway gradle plugin to provide `Property` values on the extension rather than using bare types. This is incredibly important for working with Gradle such that properties remain...
This is not an issue, but a discussion as I've run into a bit of a road-block in my work. Currently, the generator is configurable via changing the template values...
It'd be helpful if generated methods included an `@see` to the member the value was generated from. ## Example ### Given ```java class Foo { public int getBar() { return...
This causes failures in Gradle 8.2.1 due to _something_.
https://kotlinlang.org/docs/gradle-configure-project.html#gradle-java-toolchains-support
https://github.com/assertj/assertj-generator-gradle-plugin/pull/66 shows a failing `projectHealth`, however it passes the CI action: Example that has this support: https://github.com/Nava2/kaff4/blob/c689f6f8d9e2552a1dc3dddaf051e1a0e2256742/.github/workflows/gradle-check-pristine.yml#L25 It _might_ be easier to add support to the [gradle plugin](https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin) to support...
Associating the AssertJ dependency is done via the `test` configuration, i.e: ```gradle dependencies { // https://mvnrepository.com/artifact/org.assertj/assertj-core testCompile group: 'org.assertj', name: 'assertj-core', version: '3.8.0' } ``` It would be great to...
Currently we only support `Java` as a generation language. However, due to the `assertj-generator` operating on `TypeToken` rather than actual source files, we can _generate_ `java` code from any compiled...
Currently, `sol` fails to pass a `sol::table` as a parameter to a `usertype`. Minimum example: ``` c++ class Foo { public: Foo(sol::table /*table*/) { } }; int main() { sol::state...
This debug code: ```java // WrappingParameterizedRunner.java L313 /* ** DEBUG export class to /tmp/x.class ** */ try { FileOutputStream fos = new FileOutputStream("/tmp/x.class"); fos.write(clazzBytes); fos.close(); } catch (Exception e1) {...