pom.xml文件中配置
system,system依赖不是由maven仓库,而是本地的jar包,因此必须配合systemPath标签来指定本地的jar包所在全路径。这类jar包默认会参与编译、测试、运行,但是不会被参与打包阶段。
<!-- 引入本地lib包 --> <!-- 达梦数据库驱动 --> <dependency> <groupId>com.dm</groupId> <artifactId>DmJdbcDriver</artifactId> <scope>system</scope> <version>1.8.0</version> <systemPath>${project.basedir}/src/lib/DmJdbcDriver18.jar</systemPath> </dependency>
如果使用Spring Boot也想打包进去的话,需要在插件里做配置true
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar --> <includeSystemScope>true</includeSystemScope> </configuration> </plugin>