首页 > 其他分享 >maven打包加入本地jar包案例

maven打包加入本地jar包案例

时间:2023-01-09 15:11:48浏览次数:37  
标签:1.6 jar boot sgcc maven true 打包

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                    <fork>true</fork>
                </configuration>
            </plugin>
        <dependency>
            <groupId>com.sgcc</groupId>
            <artifactId>nds</artifactId>
            <version>1.6</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/sgcc_nariOld-1.6.jar</systemPath>
        </dependency>

 

标签:1.6,jar,boot,sgcc,maven,true,打包
From: https://www.cnblogs.com/qq376324789/p/17037105.html

相关文章