我使用Intellij开发gradle Java项目。目前,我使用:
dependencyManagement {
imports {
mavenBom 'com.health.project:1.0"
}
}
...
implementation 'com.health.project:common'
在我的gradle中检索此依赖项。
但是现在我需要修改该项目com.health.project
的源代码,所以我想知道如何在intellij中导入它,并告诉intellij使用导入的项目作为依赖项。 ?