为了账号安全,请及时绑定邮箱和手机立即绑定

在 JAR 文件中附加快照版本名称

在 JAR 文件中附加快照版本名称

aluckdog 2021-07-15 22:02:55
我使用以下pom.xml文件运行 Hadoop 应用程序。该文件包含用于创建JAR文件和所需依赖项的所有信息。该文件提供如下:<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.test.hadoop.wordcount</groupId>    <artifactId>wordcount</artifactId>    <version>0.0.1-SNAPSHOT</version>    <packaging>jar</packaging>    <name>wordcount</name>    <url>http://maven.apache.org</url>    <properties>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    </properties>    <dependencies>        <!-- Hadoop -->        <dependency>            <groupId>org.apache.hadoop</groupId>            <artifactId>hadoop-core</artifactId>            <version>RELEASE</version>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>RELEASE</version>            <scope>test</scope>        </dependency>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.codehaus.mojo</groupId>                <artifactId>exec-maven-plugin</artifactId>                <version>1.2.1</version>                <executions>                    <execution>                        <goals>                            <goal>java</goal>                        </goals>                    </execution>                </executions>                <configuration>                    <mainClass>com.test.hadoop.wordcount.WordCount</mainClass>                </configuration>            </plugin>当我运行应用程序时,它会wordcount.jar在该位置创建 JAR 文件,但是,我想附加带有 JAR 名称的快照版本,即。wordcount-0.0.1-SNAPSHOT.jar.我如何做到这一点?我对快照版本控制不是很了解。我pom.xml现在提供了更新文件。
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

Intellij w/Maven 在目标文件夹下生成版本化的 JAR

注意:由于您没有使用 Shade 插件,因此您的 JAR 不应包含您可能需要的依赖项


查看完整回答
反对 回复 2021-07-29
  • 1 回答
  • 0 关注
  • 207 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信