Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 7c4498a

Browse files
author
Scott Stafford
committed
Merge branch 'dev'
2 parents 28ee4b5 + 4068a94 commit 7c4498a

File tree

144 files changed

+424
-4762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+424
-4762
lines changed

build.gradle

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ subprojects {
6262
compile 'ch.qos.logback:logback-classic:1.1.8'
6363
compile 'org.slf4j:slf4j-api:1.7.21'
6464
compile "org.springframework.batch:spring-batch-core:$springVersion"
65-
compile "com.marklogic:java-client-api:4.0.0-EA3"
66-
compile "com.marklogic:ml-javaclient-util:2.11.0"
65+
compile "com.marklogic:java-client-api:4.0.0-EA4"
66+
compile "com.marklogic:ml-javaclient-util:2.12.0"
6767

6868
testCompile "org.springframework.batch:spring-batch-test:$springVersion"
6969
testCompile "com.marklogic:ml-junit:2.6.0"
@@ -130,7 +130,7 @@ project(':core') {
130130
runtime "org.springframework.batch:spring-batch-core:$springVersion"
131131

132132
//com.marklogic.spring.batch.Main extends com.marklogic.client.helper.LoggingObject
133-
runtime "com.marklogic:ml-javaclient-util:2.11.0"
133+
runtime "com.marklogic:ml-javaclient-util:2.12.0"
134134

135135
runtime "org.springframework:spring-jdbc:4.2.6.RELEASE"
136136

@@ -149,7 +149,28 @@ project(':core') {
149149
project(":infrastructure") {
150150
description = 'MarkLogic Spring Batch Infrastructure'
151151
dependencies {
152-
compile "com.marklogic:data-movement:1.0.0-EA3"
152+
// For importing RDF
153+
compile('org.apache.jena:jena-arq:2.13.0') {
154+
exclude(group: 'org.slf4j')
155+
exclude(group: 'ch.qos.logback')
156+
exclude(group: 'log4j')
157+
}
158+
compile('org.apache.jena:jena-core:2.13.0') {
159+
exclude(group: 'org.slf4j')
160+
exclude(group: 'xerces')
161+
exclude(group: 'commons-cli')
162+
}
163+
compile('com.hp.hpl.jena:jena:2.6.4') {
164+
exclude(group: 'org.slf4j')
165+
}
166+
compile('com.marklogic:marklogic-jena:1.0.0'){
167+
changing=true
168+
exclude(group: 'org.slf4j')
169+
exclude(group: 'log4j')
170+
exclude(group: 'ch.qos.logback')
171+
}
172+
173+
testCompile project(':test')
153174
}
154175

155176
}

examples/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Examples
2+
3+
This is a playground of former MarkLogic Spring Batch applications that we have built in our discovery of how to use Spring Batch. The remaining examples are jobs that will either be migrated to standalone projects are kept for archive purposes.

examples/archive/mysql-sakila/build.gradle

Lines changed: 0 additions & 81 deletions
This file was deleted.

examples/archive/mysql-sakila/gradle.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/archive/mysql-sakila/src/main/java/org/example/SampleConfig.java

Lines changed: 0 additions & 42 deletions
This file was deleted.

examples/archive/mysql-sakila/src/main/java/org/example/SampleReader.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

examples/archive/mysql-sakila/src/main/resources/logback.xml

Lines changed: 0 additions & 23 deletions
This file was deleted.

examples/base/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

examples/base/build.gradle

Lines changed: 0 additions & 40 deletions
This file was deleted.

examples/base/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)