diff --git a/mantle-usl/build.gradle b/mantle-usl/build.gradle index ad565b43..eed494f5 100644 --- a/mantle-usl/build.gradle +++ b/mantle-usl/build.gradle @@ -19,7 +19,8 @@ def frameworkDir = file(moquiDir.absolutePath + '/framework') // maybe in the future: repositories { mavenCentral() } repositories { flatDir name: 'localLib', dirs: frameworkDir.absolutePath + '/lib' - flatDir name: 'localLibSearch', dirs: projectDir.absolutePath + '/lib/search' + flatDir name: 'localLibSearch', dirs: frameworkDir.absolutePath + '/lib/search' + flatDir name: 'localLibOrientDb', dirs: frameworkDir.absolutePath + '/lib/orientdb' flatDir name: 'moquiLib', dirs: frameworkDir.absolutePath + '/build/libs' } @@ -29,6 +30,7 @@ dependencies { compile fileTree(dir: frameworkDir.absolutePath + '/lib', includes: ['*.jar']) compile fileTree(dir: frameworkDir.absolutePath + '/lib/search', includes: ['*.jar']) + compile fileTree(dir: frameworkDir.absolutePath + '/lib/orientdb', includes: ['*.jar']) compile name: 'moqui-framework', version: version // Public Domain }