如何使用Maven将依赖关系JAR打包为项目JAR的一部分

时间:2018-10-09 20:04:15

标签: java maven dependency-management

我有2个Maven项目

1)我的Utils项目-导入datecalc-common作为依赖项,包含我的自定义实用程序类。请注意,它没有主类。

2)我的主项目-导入“我的实用程序项目”作为依赖项。

enter image description here “我的主项目”显示错误“找不到类HolidayCalculator”。

我的Utils Project-pom.xml如下所示。

如何修改它,以便将依赖项jar包含在“ My Utils Project” .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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>      
    </properties>   
    <groupId>com.mycompany.mycommoncode</groupId>
    <artifactId>myutilsjar</artifactId>
    <version>0.0.12-SNAPSHOT</version>
    <name>myutilsjar</name>
    <description>Common Date Utils used by my classes</description>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>5.0.8.RELEASE</version>
    </dependency>
        <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.0.8.RELEASE</version>
</dependency>
  <dependency>
                    <groupId>net.objectlab.kit</groupId>
                    <artifactId>datecalc-common</artifactId>
                    <version>1.4.0</version>
                    </dependency>
                    <dependency>
                    <groupId>net.objectlab.kit</groupId>
                    <artifactId>datecalc-jdk8</artifactId>
                    <version>1.4.0</version>
                    </dependency>
                <dependency>
            <groupId>com.fasterxml.uuid</groupId>
            <artifactId>java-uuid-generator</artifactId>
            <version>3.1.4</version>
         </dependency>
<dependency>
    <groupId>javax.validation</groupId>
    <artifactId>validation-api</artifactId>
    <version>2.0.1.Final</version>
</dependency>
</dependencies>
    <distributionManagement>
        <snapshotRepository>
        <id>snapshots</id>
        <url>my maven url</url>
        </snapshotRepository>
    </distributionManagement>       
</project>

注意:我不想使用“ shade”插件。还有其他方法吗?

2 个答案:

答案 0 :(得分:0)

几个月前,我不得不解决同一问题。我编写了一个小型库,该库将在许多项目之间共享,我想将其添加到Maven。 这就是我所做的。

针对您的“实用程序”项目

使用maven-assembly-plugin进行编译:

将此添加到您的pom.xml:

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

使用以下命令使用其依赖项构建库:

  

MVN清洁编译程序集:已附加

用于您的主要项目

将此插件添加到您的pom.xml:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-install-plugin</artifactId>
            <version>2.5.2</version>
            <executions>
                <execution>
                    <id>install-external</id>
                    <phase>clean</phase>
                    <configuration>
                        <file>${project.basedir}/src/main/resources/lib/sso-client-1.0.jar</file>
                        <repositoryLayout>default</repositoryLayout>
                        <groupId>SSOClient</groupId>
                        <artifactId>sso-client</artifactId>
                        <version>1.0</version>
                        <packaging>jar</packaging>
                        <generatePom>true</generatePom>
                    </configuration>
                    <goals>
                        <goal>install-file</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

如您所见,我编写了一个自定义SSO客户端。

这将读取您在上一步中编译的jar,并将其作为依赖项提供。我决定将其放置在主项目的资源文件夹中。该版本必须与您的“ utils项目”中的版本匹配。

还将依赖项添加到pom.xml:

<dependency>
        <groupId>SSOClient</groupId>
        <artifactId>sso-client</artifactId>
        <version>1.0</version>
</dependency>

就是这样!现在,您可以在主项目中引用该包的类。

让我知道是否需要澄清。

答案 1 :(得分:0)

Apache Maven Shade插件提供了将您的工件打包到“超级jar”中的功能,也就是说,jar包含了运行项目所需的所有依赖项。如果需要,此插件还支持某些依赖项的程序包着色(重命名)。 有关更多信息,请访问: https://maven.apache.org/plugins/maven-shade-plugin/examples/includes-excludes.html#