在我的Maven项目中,我尝试了maven-shade-plugin在运行mvn package
时生成一个uber jar。因此,我在目标目录中得到三个JAR:
original-hello-world-0.1.0-SNAPSHOT.jar
hello-world-0.1.0-SNAPSHOT.jar
hello-world-0.1.0-SNAPSHOT-shaded.jar
我理解第一个jar是不包含依赖项的打包输出。但是第二个和第三个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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>mygroup</groupId>
<artifactId>myproject</artifactId>
<packaging>jar</packaging>
<version>0.1.0-SNAPSHOT</version>
<name>hello-world</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<main.class>org.example.HelloWorld</main.class>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>0.9.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- To build executable jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>${main.class}</Main-Class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<!-- To use Maven to run main class -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>${main.class}</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
我将您的pom复制到我的一个项目中,在运行mvn package
时只创建了两个JAR。
您确定“hello-world-0.1.0-snapshot-shaded.jar-shaded”jar不是以前maven运行的输出吗?请尝试MVN clean Package
并检查目标文件夹中的内容。
如果您想要一个带有“-shaded”标记的附加jar,您可以在shade插件配置中将以下内容添加到您的pom中:
<shadedClassifiedName>shaded</shadedClassifiedName>
我正在构建一个uber jarfile,但用
我正在开发一个简单的Spring控制台应用程序(这是一个批处理,有一个带有经典main()方法()的类),我对pom有以下疑问。xml Maven文件。该文件仅包含工作所需的Spring依赖项。当我运行Maven install Station时,它会生成相关的。jar将应用程序编译到我的项目的目标目录中。 我正在寻找另一个类似的老项目,我过去曾参与过该项目,并将其纳入了pom。xml我可以找到这
我试图使用maven shade插件构建uber jar(构建docker映像),并将项目jar部署到maven存储库。我不想将uber jar部署到maven Repo。因此,要么我需要能够从maven deploy插件中排除特定文件,要么让maven shade插件将uber jar放在不同的位置,这样deploy插件就不会接收到它。 这两件事都有可能吗?
我看了一遍文件,没有发现任何关于它的用途的东西。
我在运行包含比Hadoop发行版(CDH 5.2)中包含的版本更新的Guava的Hadoop作业时遇到了一些麻烦。这是一个已知的问题。我试图通过使用Maven shade插件对库进行着色来解决这个问题。因此,我在我的中添加了以下几行:
问题内容: 在将Maven jFree依赖项添加到现有应用程序后,我将无法执行创建的jar。 我收到的唯一错误消息如下: 完整的外观如下所示: 如果执行jar,则不会得到其他任何调试信息。 是否可以验证jarfile?或有类似…的东西? 重现步骤: 新建一个文件夹 从上方将Pom.xml复制到该文件夹中。 保存小的`public static void main(…)。进入src / main