Skip to content
This repository has been archived by the owner on Aug 26, 2020. It is now read-only.

Commit

Permalink
Update DMSDK version & depedency to get from DMC maven2 for EA3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kkanthet committed Sep 13, 2016
1 parent 1ffeedf commit 9433b0d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
18 changes: 12 additions & 6 deletions entity-services-e2e/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ apply plugin: 'application'

mainClassName = "com.marklogic.entityservices.e2e.ExamplesLoader";

dependencies {
compile('com.marklogic:data-movement:1.0-SNAPSHOT') {
exclude(group: 'com.google.guava')
}
compile('ch.qos.logback:logback-classic:1.1.7')
compile('com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.7.0')

repositories {
maven {
url "http://developer.marklogic.com/maven2"
}
}
dependencies{
compile ('com.marklogic:data-movement:1.0.0-EA3'){
exclude(group: 'com.google.guava')
}
compile('ch.qos.logback:logback-classic:1.1.7')
compile('com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.7.0')
}

ext {
Expand Down
17 changes: 11 additions & 6 deletions entity-services-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ apply plugin: 'application'

mainClassName = "com.marklogic.entityservices.examples.ExamplesLoader";

dependencies {
compile('com.marklogic:data-movement:1.0-SNAPSHOT') {
exclude(group: 'com.google.guava')
}
compile('ch.qos.logback:logback-classic:1.1.7')
compile('com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.7.0')
repositories {
maven {
url "http://developer.marklogic.com/maven2"
}
}
dependencies{
compile('com.marklogic:data-movement:1.0.0-EA3'){
exclude(group: 'com.google.guava')
}
compile('ch.qos.logback:logback-classic:1.1.7')
compile('com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.7.0')
}

ext {
Expand Down

0 comments on commit 9433b0d

Please sign in to comment.