将 ical4j 添加到 maven jhipster 项目

Add ical4j to a maven jhipster project

我有一个 jhipster 生成的应用程序,它使用 maven 和后端的 java springboot。我想将 ical4j 库添加到项目中,所以在 pom.xml 文件的 <dependencies> 标记下,我添加了 here 解释的行。但是,当我添加 import org.mnode.ical4j; 时,maven 编译器会抛出错误 package org.mnode does not exist 。 这看起来很微不足道,但我不明白我所缺少的。 谢谢

根据我在官方 GitHub 存储库 (ical4j/ical4j) 中看到的内容,要导入的正确包从 net.fortuna.ical4j 开始。示例:

import net.fortuna.ical4j.util.DefaultEncoderFactory;