美文网首页
maven引入自定义项目打成的jar包

maven引入自定义项目打成的jar包

作者: SUNOW2 | 来源:发表于2018-07-12 11:25 被阅读13次

    步骤

    1、新建一个完整的springboot项目,留待制作jar包
    2、在该项目的pom文件build标签内添加插件

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                    <classifier>exec</classifier>
                </configuration>
            </plugin>
        </plugins>
    </build>
    

    3、mvn clean
    4、mvn compile
    5、mvn install
    注意:mvn package是打jar包,并存放在项目的target目录下,而mvn install是打jar包,并安装到本机的maven仓库,即m2文件夹内
    6、在另一个项目的pom文件中直接引入该jar包,类似于:

    <dependency>
        <groupId>com.software</groupId>
        <artifactId>springbootjar</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </dependency>
    

    相关文章

      网友评论

          本文标题:maven引入自定义项目打成的jar包

          本文链接:https://www.haomeiwen.com/subject/kuvlpftx.html