使用Net-beans,我创建了一个maven项目,这个maven项目需要导入另一个非maven项目。
这是可能的,如果是的话,我可以知道该怎么做吗?
答案 0 :(得分:0)
我认为这不是最好的方式。
我有一个解决方法。将这些依赖项语句添加到pom.xml。在构建ABC项目之后构建这个maven项目,这是Netbeans中的一个非maven项目。
<dependency>
<groupId>abc</groupId>
<artifactId>abc</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>C:\NetbeansProjects\CloudProject\abc\dist\abc.jar</systemPath>
</dependency>