How do one setup the ActiveJDBC instrumentation step on a quarkus project?
The instrumentation plugin is setup in pom.xml, and can be run successfully manually or via IDE.
<plugin>
<groupId>org.javalite</groupId>
<artifactId>activejdbc-instrumentation</artifactId>
<version>3.4-j11</version>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</plugin>
But the instrumented model classes are not recognized after running 'quarkus dev' or 'mvn quarkus:dev'
org.javalite.activejdbc.InitException: you are trying to work with models, but no models are found. Maybe you have no models in project, or you did not instrument the mode
ls. It is expected that you have a file activejdbc_models.properties on classpath
at org.javalite.activejdbc.ModelFinder.getModelsForDb(ModelFinder.java:92)
at org.javalite.activejdbc.Registry.init(Registry.java:127)
at org.javalite.activejdbc.Registry.getMetaModel(Registry.java:101)
at org.javalite.activejdbc.ModelDelegate.metaModelOf(ModelDelegate.java:273)
at org.javalite.activejdbc.ModelDelegate.findAll(ModelDelegate.java:178)
Quarkus 3.1.2.Final, ActiveJDBC 3.4-j11, lombok 1.18.28.