将外部 jar 作为依赖项添加到 maven POM 进行编译,但在创建 fat jar 时将其排除

Add an external jar as a dependency to maven POM for compiling, but exclude it while creating a fat jar

虽然 运行 mvn install 我需要包含一个外部 jar(仅用于编译)。然而我也在创建一个 fat/uber jar,因此,外部依赖被添加到 fat jar,我不想在 fat jar 中添加外部 jar。 请提出出路?

我添加外部依赖为:

<dependency>
            <groupId>a.b.c</groupId>
            <artifactId>xyz</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/library.jar</systemPath>
</dependency>

并创造脂肪为:

<plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>3.2.0</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>assemble-all</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.1.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
</plugins>

但是fat jar中不需要外部jar(library.jar)

如何将它从 fat jar 中排除,但在执行 mvn install 时仍保留它? 请注意,在本地仓库中添加 jar 对我来说不是一个选项,因为我正在从 jenkins 进行此构建。

maven-shade-plugin生成的神器貌似会覆盖 maven-assembly-plugin 的输出,除非有什么遗漏 从代码片段中,您应该能够删除 maven-assembly-plugin。

要从阴影 JAR 中过滤特定的 JAR,请添加:

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        ...
        <configuration>
          <artifactSet>
            <excludes>
              <exclude>a.b.c:xyz</exclude>
            </excludes>
          </artifactSet>
        </configuration>
        ...
      </plugin>

到您的 maven-shade-plugin 配置。