From a93ee7fb35913de603dcca9970fea28bcfe956cf Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Sat, 28 Jun 2014 16:08:54 +0300 Subject: [PATCH] Comment out the Oracle Driver dependency CI Build: https://build.spring.io/browse/INTSAMPLES-NIGHTLY-1053/log --- build.gradle | 3 ++- intermediate/stored-procedures-oracle/README.md | 12 ++---------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/build.gradle b/build.gradle index f45904fa..9ea800ad 100644 --- a/build.gradle +++ b/build.gradle @@ -965,7 +965,8 @@ project('stored-procedures-oracle') { dependencies { compile "org.springframework.integration:spring-integration-jdbc:$springIntegrationVersion" - compile "com.oracle:ojdbc6:$oracleDriverVersion" +//TODO Uncomment it when the ojdbc6 artifact is available in the mavenLocal() +// compile "com.oracle:ojdbc6:$oracleDriverVersion" } test { diff --git a/intermediate/stored-procedures-oracle/README.md b/intermediate/stored-procedures-oracle/README.md index b5efa92a..a5956cc7 100644 --- a/intermediate/stored-procedures-oracle/README.md +++ b/intermediate/stored-procedures-oracle/README.md @@ -28,16 +28,8 @@ Nevertheless, the example should work with other versions as well. $ mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=~/dev/ojdbc6.jar -DgeneratePom=true -- Now you can add the dependency to the Maven pom.xml file. Please check the pom.xml for this project and verify that it matches your installed Oracle JDBC driver - -```XML - - com.oracle - ojdbc6 - 11.2.0.3 - -``` - +- Now you can uncomment the `ojdbc6` dependency in the build.gradle file for `stored-procedures-oracle` project. + After that you can run the sample application using [Gradle Application Plugin](http://www.gradle.org/docs/current/userguide/application_plugin.html): $ gradlew :stored-procedures-oracle:run