IntelliJ不会在本地存储库中保存jar

时间:2017-08-29 09:16:29

标签: java maven intellij-idea

我遇到了一个问题,我有一个maven项目,当我使用intelliJ时,它不会更新本地存储库。当我使用具有相同项目的netbeans时,它可以正确保存,我不知道为什么不使用intelliJ。

<modelVersion>4.0.0</modelVersion>
<groupId>com.bank</groupId>
<artifactId>facade</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>

1 个答案:

答案 0 :(得分:4)

尝试使用mvn install

默认情况下,IntelliJ不会自动执行本地安装。

如果您需要,请点击Maven Projects(通常位于屏幕右侧,或通过左下角的小导航栏),转到Lifecycle,右键点击{ {1}},然后选择install

enter image description here