gpt4 book ai didi

java - Intellij IDEA Maven 插件 - 管理依赖关系

转载 作者:行者123 更新时间:2023-12-01 10:47:33 26 4
gpt4 key购买 nike

我是 IntelliJ 和 Maven 的新手,并尝试过一些。我通过“项目结构”窗口中的模块和项目结构设置导入了一些库(参见下面的屏幕截图),因为我认为我必须在此处添加我的依赖项。我还认为这会自动创建带有依赖项列表的 pom.xml,但事实并非如此!我必须通过以下步骤添加依赖项:

Open the pom.xml file > Menu "Code" > "Generate" > Popup "Dependency"

或通过

Alt + 插入

项目结构窗口:

enter image description here

要导出所有库,我还必须在 pom.xml 中添加一个插件:

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>your.package.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>

[...]

</dependency>
</dependencies>

并通过运行配置将目标设置为

clean compile assembly:single package

这让我运行了两个 jar :

test-1.0-SNAPSHOT.jar & test-1.0-SNAPSHOT-jar-with-dependencies.jar

对于初学者来说有很多事情要做!我现在的问题是:是否有更短的方法来管理项目的依赖项?项目结构设置的真正用途是什么(在依赖管理的情况下)???我是不是做得太多或者做错了什么?

PS:对于所有刚接触 Maven 和 IntelliJ 的人,请参阅 https://www.jetbrains.com/idea/help/maven.html

最佳答案

如果您使用 Maven,则只需在 pom.xml 上添加依赖项即可。

您还可以使用

Open the pom.xml file > Menu "Code" > "Generate" > Popup "Dependency"

正如你所做的那样。 InteliJ 会自动将其添加到您项目的类路径中。

例如,当您有子模块时,将使用项目结构。这里不是添加jar的。

关于java - Intellij IDEA Maven 插件 - 管理依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34088277/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com