可选的 jar 包含在 maven 插件的 fat jar 中

Optional jar inclusion in fat jar in maven plugin

如何创建具有特定依赖项的 fat jar。 我有一个 spark 项目,它需要 2 个外部 jar,我想将其添加到应用程序 jar 中。当我创建可执行 jar 时,jar 中不包含依赖项,当我创建 fat jar 时,所有依赖项都被添加,包括 spark 等。我只想在我的 jar 中添加这两个 jar。下面是我使用 maven 程序集插件创建的 pom 文件。

<dependencies>

    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-core_2.11</artifactId>
        <version>2.2.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-sql_2.11</artifactId>
        <version>2.2.0</version>
    </dependency>

    <!-- Below dependencies need to be added in Application jar -->

    <dependency>
        <groupId>netacuity</groupId>
        <artifactId>common-netacuity-db</artifactId>
        <version>3.1.2</version>
    </dependency>
    <dependency>
        <groupId>netacuity</groupId>
        <artifactId>common</artifactId>
        <version>2.1.1</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.4.1</version>
            <configuration>
                <!-- get all project dependencies -->
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <!-- MainClass in mainfest make a executable jar -->
                <archive>
                    <manifest>
                        <mainClass>com....App</mainClass>
                    </manifest>
                </archive>

            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <!-- bind to the packaging phase -->
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

您可以为此使用 scope。默认情况下 scopecompile ,因此打包时将包含所有 jar。

要包含一个 jar,您可以提供 scope 作为 compile 并保留 default

    <dependency>
        <groupId>netacuity</groupId>
        <artifactId>common-netacuity-db</artifactId>
        <version>3.1.2</version>
        <scope>compile</scope>
    </dependency>

要排除jar,您可以将scope更改为provided。这些罐子应该在运行时可用。

    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-sql_2.11</artifactId>
        <version>2.2.0</version>
        <scope>provided</scope>
    </dependency>