如何使用 Maven 将 JAR 文件与其依赖项捆绑在一起

How to bundle a JAR file with its dependencies using maven

我正在使用 ByteBuddy 开发 Java 代理,我需要将 ByteBuddy 库 .jar 文件包含在代理 .jar 文件中。到目前为止,为了让代理 运行 顺利进行,我需要 ByteBuddy 库 .jar 文件在编译时和 运行 时都出现在 class 路径中.我如何捆绑 .jar 文件以使代理独立?

我尝试使用 shade 插件(如 here 所示)以及在网络上找到的一些其他技术,但 none 似乎确实包含 .jar文件,仅供参考。

对于每一种技术,我查看了生成的 .jar 文件(每次重约 5kB),只找到了与我编写的 classes 相对应的 .class 文件,没有 class 个与 ByteBuddy 相关的文件。需要明确的是,ByteBuddy 库 .jar 文件重约 3MB,因此我预计我的独立代理 .jar 文件重约 3MB,因为我的代码很轻。

下面是我的 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.captainhook.agent</groupId>
  <artifactId>agent</artifactId>
  <version>1.0-SNAPSHOT</version>

  <name>agent</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <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>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.bytebuddy</groupId>
      <artifactId>bytebuddy</artifactId>
      <version>1.12.3</version>
      <scope>system</scope>
      <systemPath>${project.basedir}/byte-buddy-1.12.3.jar</systemPath>
   </dependency>
   <dependency>
    <groupId>net.bytebuddy.agent</groupId>
    <artifactId>bytebuddy-agent</artifactId>
    <version>1.12.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/byte-buddy-agent-1.12.3.jar</systemPath>
 </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

这是我在 运行ning mvn package :

之后得到的输出
[...]
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ agent ---
[INFO] 
[INFO] --- maven-assembly-plugin:2.2-beta-5:single (default) @ agent ---
[INFO] Building jar: /home/bluesheet/svn/stages/captainhook/2021/ijp-frida-jdi-bytebuddy/1/dbg/shared/agent/maven-test/agent/target/agent-1.0-SNAPSHOT-jar-with-dependencies.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  1.339 s
[INFO] Finished at: 2021-12-31T12:26:59+01:00
[INFO] ------------------------------------------------------------------------

编辑: 所以,之前所有技术都不起作用的原因是我指定依赖项的方式。这不包括在内:

<dependency>
    <groupId>net.bytebuddy</groupId>
    <artifactId>bytebuddy</artifactId>
    <version>1.12.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/byte-buddy-1.12.3.jar</systemPath>
</dependency>

虽然这样 :

<dependency>
    <groupId>net.bytebuddy</groupId>
    <artifactId>byte-buddy</artifactId>
    <version>1.12.6</version>
</dependency>

我是 maven 的新手,所以我盲目地复制粘贴了一段代码以包含依赖项,但我没有发现错误... 非常感谢!

听起来您需要使用带有“jar-with-dependencies”描述符的“maven-assembly-plugin”。

例如这是一个依赖于 ByteBuddy 的完整示例 pom 文件:

<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>test.example</groupId>
    <artifactId>packaging-example</artifactId>
    <version>1.0-SNAPSHOT</version>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <archive>
                        <manifest>
                            <mainClass>test.example.TestByteBuddy</mainClass>
                        </manifest>
                    </archive>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

        </plugins>
    </build>

    <dependencies>

        <dependency>
            <groupId>net.bytebuddy</groupId>
            <artifactId>byte-buddy</artifactId>
            <version>1.12.6</version>
        </dependency>

    </dependencies>

</project>

为了完整起见-这里是主要的 class 还有:

package test.example;

import net.bytebuddy.ByteBuddy;

public class TestByteBuddy
{
    public static void main(String... args) throws Exception
    {
        System.out.println("Hello Byte Buddy Class - " + ByteBuddy.class);
    }
}

构建它会在目标目录中生成一个附加文件 - packaging-example-1.0-SNAPSHOT-jar-with-dependencies.jar

那么你应该可以 运行 它只需使用 :

java -jar packaging-example-1.0-SNAPSHOT-jar-with-dependencies.jar 

给你输出:

Hello Byte Buddy Class - class net.bytebuddy.ByteBuddy