Last active
May 5, 2020 12:35
-
-
Save aalmiray/4cbdaa4d13de82d587ebacdafbcd18bd to your computer and use it in GitHub Desktop.
Oracle JDBC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
implementation 'com.oracle.database.jdbc:ojdbc8:19.6.0.0' | |
implementation 'com.oracle.database.jdbc:ucp:19.6.0.0' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<properties> | |
<oracle.jdbc.version>19.6.0.0</oracle.jdbc.version> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>com.oracle.database.jdbc</groupId> | |
<artifactId>ojdbc8</artifactId> | |
<version>${oracle.jdbc.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.oracle.database.jdbc</groupId> | |
<artifactId>ucp</artifactId> | |
<version>${oracle.jdbc.version}</version> | |
</dependency> | |
</dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment