i have a parent project A(war) that implement, with dependency, project B(jar), similar
<dependency>
<groupId>big-parent</groupId>
<artifactId>big-BL</artifactId>
<version>1.0</version>
</dependency>
In project B there are all the 'models' that are recalled by project A.
When i instrument my A project, with command
mvn process-classes
I haven't compilation errors but when call my RestController, from A project by postman for example, the issue is:
org.javalite.activejdbc.InitException: failed to determine Model class name, are you sure models have been instrumented?
i'm sure that the problem is in instrumentation of Project A but what am i doing wrong?
Another step about i do is decompile WAR file of A Project and actually, in 'lib' folder, there is jar of B project BUT, the model of my interest, there isn't methods from super class to a subclass about instrumentation.... someone know what is the right method?