Skip to content
This repository has been archived by the owner on Jan 5, 2018. It is now read-only.

Commit

Permalink
Added jars from orientdb so tests will run with recent framework changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesde committed Nov 12, 2013
1 parent b559f24 commit edd0d12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mantle-usl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand All @@ -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
}

Expand Down

0 comments on commit edd0d12

Please sign in to comment.