如何制作jar依赖,并打入maven仓库

一、创建一个maven项目(创建步骤此处省略)

[图片上传失败...(image-bfccb4-1650290718682)]

二、创建一个类并自定义一个方法(这里我们自定义一个equals方法为例)

public class CustomerEquals {

    public static Boolean equals(Object str1, Object str2) {
        return str1 == str2 || str1!=null && str1.equals(str2);
    }
}

[图片上传失败...(image-a35817-1650290718682)]

三、在resources路径下建立META-INF/spring.factories

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
  com.example.customereq

[图片上传失败...(image-f1dfba-1650290718682)]

四、maven打包(可执行命令:mvn clean package)

[图片上传失败...(image-e9e308-1650290718682)]

五、使用maven将jar打包到本地仓库

mvn install:install-file -Dfile=customer-eq-0.0.1-SNAPSHOT.jar -DgroupId=org.example -DartifactId=customer-equal -Dversion=2.0-SNAPSHOT -Dpackaging=jar

-Dfile 为本地jar的路径,-DgroupId为在maven仓库中的路径,-DartifactId为maven仓库中的依赖的名称,-Dversion为版本号,-Dpackaging为类型
[图片上传失败...(image-804547-1650290718682)]

jar在maven仓库中的路径

[图片上传失败...(image-d12a4d-1650290718682)]

六、使用

1.创建一个新maven项目

2.引入maven仓库中的customer-equal依赖

        
            org.example
            customer-equal
            2.0-SNAPSHOT
        

[图片上传失败...(image-cbd94-1650290718682)]

3. 创建一个测试类

[图片上传失败...(image-7e7ec5-1650290718682)]

4. 可以查看一下依赖进来的jar源码

[图片上传失败...(image-321854-1650290718682)]

完成~~~

我是Tz ,想把我遇到的问题都分享给你,想看更多精彩内容,请关注我的微信公众号zhuangtian~~

你可能感兴趣的:(如何制作jar依赖,并打入maven仓库)