Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Last active May 5, 2020 12:35
Show Gist options
  • Save aalmiray/4cbdaa4d13de82d587ebacdafbcd18bd to your computer and use it in GitHub Desktop.
Save aalmiray/4cbdaa4d13de82d587ebacdafbcd18bd to your computer and use it in GitHub Desktop.
Oracle JDBC
repositories {
mavenCentral()
}
dependencies {
implementation 'com.oracle.database.jdbc:ojdbc8:19.6.0.0'
implementation 'com.oracle.database.jdbc:ucp:19.6.0.0'
}
<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