> > maven-resources-pluginable is not included in the > https://github.com/OpenAPITools/openapi-generator/blob/master/pom.xml or > our pom.xml and I have not been able to work out what calls it. If you have > any ideas please shout! >
maven-resources-plugin is a standard plugin, it's part of the default lifecycle without being specified explicitly: https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html Calling process-resources or any phase after it will trigger the resources plugin, e.g. compile, test, package, verify. It's the first phase in the lifecycle, almost anything will trigger it.
