I've done lots of flatDir repo stuff.. and for some reason i'm stumped here

I have:

myDir
   /lib
     /ojdbc14.jar
     /classes12.jar
  /src

etc etc

mybuild.gradle:
apply plugin: "groovy"

repositories {
    mavenCentral()
mavenRepo urls: "https://nexus.codehaus.org/content/repositories/snapshots";
    flatDir name: 'localProjectRepo', dirs: "$projectDir/lib"
}

configurations {
    compile.transitive = true
    testCompile.transitive = true
}

dependencies {
    groovy "org.codehaus.groovy:groovy-all:1.7.8"

    compile fileTree(dir: "$projectDir/lib", include: '*.jar')

}

I've tried this approach.. and i'm tried

compile ":ojdbc:14"
or
compile ":ojdbc14:"

none of the 3 approaches seem to ever resolve/find the oracle jar.. and thus my: gradle compileGroovy always fails because it can't find oracle.sql.CLOB etc etc

thoughts?

Roger


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to