即使在添加'< repository>`pom.xml中的tag;

发布于 2025-01-23 19:16:24 字数 1010 浏览 0 评论 0 原文

我正在尝试使用Maven Build System创建基于Intellij的插件。我发现用于创建插件的实际API位于软件包 com.jetbrains.intellij.idea.ideaic 中。我已经在 我在我的 pom.xml 中添加了一个存储库

<repositories>
    <repository>
        <id>intellij</id>
        <name>Intellij Repository</name>
        <url>https://www.jetbrains.com/intellij-repository/releases/</url>
    </repository>
</repositories>

,并且需要在

<dependencies>
    <dependency>
        <groupId>com.jetbrains.intellij.idea</groupId>
        <artifactId>ideaIC</artifactId>
        <version>2022.1</version>
    </dependency>
</dependencies>

我按重新加载所有Maven Projects Intellij Ideas中的所有Maven Projects 之后所需的依赖性。

未解决的依赖性:'com.jetbrains.intellij.idea:Ideaic:jar:2022.1'

我的设置有什么问题?

I'm trying to create an intellij-based plugin using maven build system. I found that actual API for creating plugins is in package com.jetbrains.intellij.idea.ideaIC. I've searched for this package on https://mvnrepository.com (https://mvnrepository.com/artifact/com.jetbrains.intellij.idea/ideaIC/2022.1)
I've added a repository in my pom.xml

<repositories>
    <repository>
        <id>intellij</id>
        <name>Intellij Repository</name>
        <url>https://www.jetbrains.com/intellij-repository/releases/</url>
    </repository>
</repositories>

and needed dependency as

<dependencies>
    <dependency>
        <groupId>com.jetbrains.intellij.idea</groupId>
        <artifactId>ideaIC</artifactId>
        <version>2022.1</version>
    </dependency>
</dependencies>

After I press Reload All Maven Projects in Intellij IDEA it says

Unresolved dependency: 'com.jetbrains.intellij.idea:ideaIC:jar:2022.1'

What is wrong with my setup?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2025-01-30 19:16:24
  • 首先确保存在具有指定版本的依赖关系。
  • 如果存在,请单击“无效的缓存”文件,请确保检查清除文件系统并下载标记。.然后单击无效的按钮,然后重新启动按钮,此将重新启动Intellij。
  • Intellij重启后,右键单击pom.xml - &gt; maven-&gt;下载资源。这将下载所有必要的依赖性。
  • 然后重新加载所有Maven项目。
  • First make sure the dependency with the specified version exists.
  • If it exists go to File and click Invalidate cache make sure to check clear file system and mark downloaded.. then click Invalidate and Restart button this will restart intellij.
  • After Intellij restared right click on pom.xml -> maven-> download sources. This will download all the necessary dependency.
  • Then reload all maven projects.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文