Intellij IDEA Maven 导入问题
Intellij IDEA Maven Import problems
我想切换到 IntelliJ 进行 forge modding (minecraft)。当我按照他们在互联网上说的去做时,我得到了一个 maven 错误...
Unindexed remote maven repositories found. Disable...
The following repositories used in your gradle projects were not indexed yet:
http://files.minecraftforge.net/maven
If you want to use dependency completion for these repositories artifacts,
Open Repositories List, select required repositories and press "Update" button
当我点击更新时,它加载了半秒钟,然后再次出现相同的错误...我在互联网上搜索但似乎没有人遇到我的问题...请帮忙?
检查idea.log for errors. It may fail with OutOfMemory error in which case you can try increasing the heap size for Maven Importer (VM options for importer) and IDE heap size。
如果你是32位JVM(默认)运行,-Xmx
值尽量不要超过750-1024m,否则可能crash or fail to start.
如果您需要使用更多堆,switch to 64-bit Java并在 IntelliJ IDEA 设置中为 Maven(JDK 导入程序)指定相同的 64 位 JVM。
另一种可能的情况是 IDE 无法连接到 Maven 进程。在某些系统上,需要编辑 hosts
文件,以便 localhost
resolves correctly.
还有一个 bug caused by Nvidia driver(java 进程崩溃)。如果这适用于您的硬件,请确保您拥有最新的驱动程序。
如果上述所有方法都没有帮助,请分享您的 idea.log
文件。
请注意,使用项目不需要索引存储库,但这可能表明 Maven 由于上述原因之一(或其他原因)无法工作。查看项目的依赖项是否已导入,以及是否可以在 IDEA.
中构建导入的项目
一些存储库cannot be indexed at all,在这种情况下忽略错误。
我想切换到 IntelliJ 进行 forge modding (minecraft)。当我按照他们在互联网上说的去做时,我得到了一个 maven 错误...
Unindexed remote maven repositories found. Disable...
The following repositories used in your gradle projects were not indexed yet:
http://files.minecraftforge.net/maven
If you want to use dependency completion for these repositories artifacts,
Open Repositories List, select required repositories and press "Update" button
当我点击更新时,它加载了半秒钟,然后再次出现相同的错误...我在互联网上搜索但似乎没有人遇到我的问题...请帮忙?
检查idea.log for errors. It may fail with OutOfMemory error in which case you can try increasing the heap size for Maven Importer (VM options for importer) and IDE heap size。
如果你是32位JVM(默认)运行,-Xmx
值尽量不要超过750-1024m,否则可能crash or fail to start.
如果您需要使用更多堆,switch to 64-bit Java并在 IntelliJ IDEA 设置中为 Maven(JDK 导入程序)指定相同的 64 位 JVM。
另一种可能的情况是 IDE 无法连接到 Maven 进程。在某些系统上,需要编辑 hosts
文件,以便 localhost
resolves correctly.
还有一个 bug caused by Nvidia driver(java 进程崩溃)。如果这适用于您的硬件,请确保您拥有最新的驱动程序。
如果上述所有方法都没有帮助,请分享您的 idea.log
文件。
请注意,使用项目不需要索引存储库,但这可能表明 Maven 由于上述原因之一(或其他原因)无法工作。查看项目的依赖项是否已导入,以及是否可以在 IDEA.
中构建导入的项目一些存储库cannot be indexed at all,在这种情况下忽略错误。