1

我在 Mac 上使用 IntelliJ IDEA 并想导入 Apache Velocity。在我的 pom.xml 文件中:

<dependencies>
    <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
    <dependency>
        <groupId>org.apache.velocity</groupId>
        <artifactId>velocity</artifactId>
        <version>1.7</version>
    </dependency>
</dependencies>

我收到错误

Failed to read artifact descriptor for org.apache.velocity:jar:1.7

我还需要添加其他设置吗?

4

1 回答 1

0

这是 Itellij Idea 的全新安装,我必须设置以下内容:

IntelliJ Idea -> Preferences -> Build, Execution, Deployment -> 
Build Tools -> Maven -> Always update snapshots -> Apply -> Ok

当然,您可以只下载jar文件并将其作为模块导入。

于 2017-08-25T15:34:41.603 回答