Does anyone know how to get Cayenne Modeler (3.0) to start up with the
model using the Maven Plugin?
I've tried:
mvn -Dmodeler.modelFile=./src/main/resources/cayenne.xml cayenne-modeler:run
This gave the standard splash screen. I also tried specifying the
model in the plugin:
<plugin>
<groupId>org.apache.cayenne.plugins</groupId>
<artifactId>maven-cayenne-modeler-plugin</artifactId>
<version>${cayenne.version}</version>
<configuration>
<modelFile>./src/main/resources/cayenne.xml</modelFile>
</configuration>
</plugin>
This also just gave the splash screen.
Thanks,
mrg