gpt4 book ai didi

Java Maven 清理并使用依赖项进行构建

转载 作者:行者123 更新时间:2023-12-02 12:36:08 25 4
gpt4 key购买 nike

我在 java Maven 和依赖项方面还是新手。请问?我使用 Java Maven 创建了一些关于 QR 代码生成器的项目。当我使用 qrgen-1.2.jar、core-2.0.jar 和 javase-2.0.jar 在 Netbeans 中运行我的项目时。它可以生成我想要的任何二维码。

/image/U4YCW.png

但是当我尝试构建和清理时,它无法在我的 Document/NetbeansProjects/QRcode/target/QRcode-1.0-SNAPSHOT.JR 中生成 QR 代码

这是我的 pom.xml

 <?xml version="1.0" encoding="UTF-8"?>
<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>com.mycompany</groupId>
<artifactId>QRcode</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>


<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.mycompany.qrcode.QRcode</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.glxn</groupId>
<artifactId>qrgen</artifactId>
<version>1.2</version>
</dependency>

</dependencies>

最佳答案

根据您的 POM,您没有将依赖项打包到正在生成的可执行 jar 中。当您在 IDE 外部运行程序时,这会导致程序失败。

以下是如何使用 Maven Assembly 插件创建包含依赖项的可执行 jar 的示例:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>com.mycompany.qrcode.QRcode</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>

mvn package 的输出现在将包含 target/QRcode-1.0-SNAPSHOT-jar-with-dependency.jar,您可以看到其中包含由您的构建依赖项。

这是一个link to the documentation对于插件。

关于Java Maven 清理并使用依赖项进行构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45130030/

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