Build module with different versions of libs in Maven
问题 I have a Netbeans' module ( Module.jar ) with a lot of dependencies declared on its pom.xml : <groupId>com.company</groupId> <artifactId>module</artifactId> <packaging>nbm</packaging> ... <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-editor-lib</artifactId> <version>${netbeans.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-editor-lib2</artifactId> <version>${netbeans