- maven scope system으로 해서 직접 다운 받은 파일을 WEB-INF/lib 하위 디렉토리에 넣고 설정해 주면됨
- 자르 파일은 메이븐에서 다운 받으면 됨
ex) https://mvnrepository.com/artifact/com.oracle.database.security/osdt_core/21.9.0.0
<!-- oracle 라이브러리 -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<scope>system</scope>
<systemPath>D:/Users/ywbes/git/Tutorial/src/main/webapp/WEB-INF/lib/ojdbc8-21.9.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.oracle.database.security</groupId>
<artifactId>oraclepki</artifactId>
<scope>system</scope>
<systemPath>D:/Users/ywbes/git/Tutorial/src/main/webapp/WEB-INF/lib/oraclepki-21.9.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.oracle.database.security</groupId>
<artifactId>osdt_cert</artifactId>
<scope>system</scope>
<systemPath>D:/Users/ywbes/git/Tutorial/src/main/webapp/WEB-INF/lib/osdt_cert-21.9.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.oracle.database.security</groupId>
<artifactId>osdt_core</artifactId>
<scope>system</scope>
<systemPath>D:/Users/ywbes/git/Tutorial/src/main/webapp/WEB-INF/lib/osdt_core-21.9.0.0.jar</systemPath>
</dependency>