I want to make a Maven meta-project; it won’t contain any code, just a pom.xml. The purpose of the project is to have a place where I can declare some dependencies, and then use this project as a dependency somewhere else. How can I tell Maven not to generate a jar file?
Share
Have you tried
<packaging>pom</packaging>?