将oracle的jar包放到本地,避免maven中央仓库不存在导致的问题

This commit is contained in:
zhouxiunai
2018-11-04 14:48:22 +08:00
parent 92e8d0bd1d
commit 5fe6403fcd
2 changed files with 10 additions and 4 deletions
+10 -4
View File
@@ -44,10 +44,13 @@
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.4.0-atlassian-hosted</version>
</dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/libs/ojdbc6-11.2.0.3.jar</systemPath>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -133,6 +136,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
<plugin>
<groupId>com.spotify</groupId>