Skip to content

Instantly share code, notes, and snippets.

@AlBaker
Created August 22, 2012 23:52
Show Gist options
  • Save AlBaker/3430658 to your computer and use it in GitHub Desktop.
Save AlBaker/3430658 to your computer and use it in GitHub Desktop.
Embedded Stardog packaging
apply plugin: "java"
apply plugin: "war"
def stardogLocation = "/some/path"
dependencies {
// To load up a DispatcherServlet
compile 'org.springframework:spring-web:3.1.2.RELEASE'
// gremlin in stardog/lib comes with groovy, we don't want to pick that up for gradle
compile fileTree(dir: stardogLocation, include: '**/*.jar', exclude: '**/*gremlin*/*')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment