如何以 jar 格式在该 jar 中获得一个带有依赖项的最终 jar?

How to have a final jar with the dependency inside that jar in the jar format?

我需要 Maven 的配置,其中项目中的所有库都在 jar 格式的最终​​ jar 中...所以我需要在最终 jar 中包含 jar。为此我只能使用maven。我已经尝试过像 one-jar 这样的插件但没有成功。 谢谢

要创建包含所有 jar 文件的 fat jar,请将以下代码添加到 pom.xml。当您 clean and build 项目时,这将自动生成一个 fat jar 文件。您需要在 <mainClass> 标签内提供 main class。就是这样。

<project>
      <build>
          <plugins>
              <plugin>
                  <artifactId>maven-assembly-plugin</artifactId>
                  <configuration>
                      <archive>
                          <manifest>
                              <addClasspath>true</addClasspath>
                              <mainClass>your.main.class</mainClass>
                          </manifest>
                      </archive>
                      <descriptorRefs>
                          <descriptorRef>jar-with-dependencies</descriptorRef>
                      </descriptorRefs>
                  </configuration>
                  <executions>
                      <execution>
                          <id>final-jar-with-dependencies</id>
                          <phase>package</phase>
                          <goals>
                              <goal>single</goal>
                          </goals>
                      </execution>
                  </executions>
              </plugin>
          </plugins>
      </build>
    </project>

不确定嵌套 jar,因为我还没有尝试过。

但我已经创建了包含所有项目依赖项的 .jar 文件(在 pom 文件中指定)

尝试在终端中执行 mvn 命令...

mvn org.apache.maven.plugins:maven-assembly-plugin:2.6:assembly -DdescriptorId=jar-with-dependencies package