How to add ojdbc7 to Java web app by Gradle?
My context: I build a Java web application what based on Spring Boot 1.3.5.RELEASE . I try to add ojdcb to dependencies list but not success. I know that Oracle has own Maven repository at http://maven.oracle.com This is my build.gradle file, Let focus at line 4, 5, 6, 36: buildscript { repositories { mavenCentral() maven { url ("https://maven.oracle.com") } } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.5.RELEASE") } } apply plugin: 'war' apply plugin: 'idea' apply plugin: 'spring-boot' jar { baseName = 'erp' version = '1.0.0' } repositories { mavenCentral(