I want to know Accessing Oracle DB from Liferay 7 CE Gradle Project is possible? As I am working on such portlet, I have created Spring MVC Portlet and Added Oracle DB Connection and Other aceess related code and tried adding dependency of Oracle JDBC Driver in build.gradle of project as "compile group: 'com.oracle', name: 'ojdbc14', version: '10.2.0.2.0'", On "Gradle refresh" in eclipse it doesn't show any error. But I could not able to build project, It Unable to resolve dependency.
Shows Error as below.
FAILURE: Build failed with an exception.
- What went wrong:
Could not resolve all files for configuration ':wars:tp-XXXXXX-Portlet:compileClasspath'.
Could not find ojdbc14.jar (com.oracle:ojdbc14:10.2.0.2.0). Searched in the following locations: https://repo1.maven.org/maven2/com/oracle/ojdbc14/10.2.0.2.0/ojdbc14-10.2.0.2.0.jar
Is there any specific version of Oracle supports in such scenario Or How can i achieve such requirement.?
Thanks