我在Eclipse上运行bimserver遇到麻烦。

我从克隆存储库开始,然后将其导入,从那里我无法克服此错误:Execution add-source of goal org.codehaus.mojo:build-helper-maven-plugin:1.10:add-source failed: Plugin org.codehaus.mojo:build-helper-maven-plugin:1.10.

我对Maven还是比较陌生,因此希望为此找到解决方案。

最佳答案

将bimserver添加为对pom.xml的依赖

<dependencies>
    <!-- https://mvnrepository.com/artifact/org.opensourcebim/bimserver -->
    <dependency>
        <groupId>org.opensourcebim</groupId>
        <artifactId>bimserver</artifactId>
        <version>1.5.21</version>
    </dependency>
</dependencies>

关于java - Bimserver错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57143955/

10-09 12:52