Eclipse JEE:备份时我可以安全地排除 .cfs 和 .index 文件吗?

Eclipse JEE:备份时我可以安全地排除 .cfs 和 .index 文件吗?

我对我的 Eclipse JEE 项目如此庞大感到失望,因为这使它们与我朋友的系统同步有点困难。后来我终于看了一下,发现 org.eclipse.m2e.core Nexus 插件文件 (.cfs) 和 eclipse 索引 (.index) 占用了 96% 的目录大小!!

排除 *.cfs 和 *.index 安全吗?这会损坏我的项目吗?

答案1

Maven Eclipse 插件使用 Nexus 创建索引,以便您可以通过 articulateID、groupID 和 classname 进行搜索。

Nexus 是 Sonatype 的 Maven 存储库管理器,可从以下网址下载http://nexus.sonatype.org。Nexus 维护 Maven 中央存储库中所有工件和元数据的索引,这使得 Nexus 和 m2eclipse 等工具可以快速搜索 Maven 存储库的内容。 https://www.theserverside.com/news/1363817/Introduction-to-m2eclipse

它只是一个索引,因此您可以从备份中排除任何 nexus/*/ 中的 .index 和 .cfs 文件。

相关内容