Skip to content

Commit 5354c2e

Browse files
committed
Merge branch 'release/1.0.0-beta.6'
2 parents 679e895 + 21a023a commit 5354c2e

File tree

194 files changed

+4425
-2044
lines changed

Some content is hidden

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

194 files changed

+4425
-2044
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
.gradle/
33
.settings/
44
.metadata/
5+
.idea/
56
marklogic-data-hub/bin/
7+
marklogic-data-hub/src/main/resources/ml-modules/root/trace-ui
68
quick-start/bin/
79
build/
810
releases/

examples/gradle-advanced/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id 'eclipse'
1111
id 'idea'
1212
id 'net.saliman.properties' version '1.4.5'
13-
id 'com.marklogic.ml-data-hub-plugin' version '1.0.0-beta.5'
13+
id 'com.marklogic.ml-data-hub' version '1.0.0-beta.6'
1414
id 'com.marklogic.ml-gradle' version '2.1.0'
1515
}
1616

examples/gradle-basic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id 'eclipse'
1111
id 'idea'
1212
id 'net.saliman.properties' version '1.4.5'
13-
id 'com.marklogic.ml-data-hub-plugin' version '1.0.0-beta.5'
13+
id 'com.marklogic.ml-data-hub' version '1.0.0-beta.6'
1414
id 'com.marklogic.ml-gradle' version '2.1.0'
1515
}
1616

marklogic-data-hub/build.gradle

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'idea'
66
id 'maven-publish'
77
id 'com.jfrog.bintray' version '1.6'
8-
id 'com.marklogic.ml-gradle' version '2.1.0'
8+
id 'com.marklogic.ml-gradle' version '2.2.0'
99
}
1010

1111
repositories {
@@ -21,13 +21,10 @@ targetCompatibility = 1.8
2121

2222
dependencies {
2323
compile 'org.springframework.batch:spring-batch-core:3.0.6.RELEASE'
24-
compile 'com.marklogic:marklogic-xcc:8.0.5'
2524
compile 'com.marklogic:java-client-api:3.0.4'
26-
compile 'com.marklogic:ml-javaclient-util:2.6.1'
27-
compile 'com.marklogic:ml-app-deployer:2.0'
25+
compile 'com.marklogic:ml-javaclient-util:2.9.0'
26+
compile 'com.marklogic:ml-app-deployer:2.2.0'
2827
compile 'commons-io:commons-io:2.4'
29-
compile 'org.apache.commons:commons-csv:1.2'
30-
compile 'org.glassfish.jaxb:txw2:2.2.11'
3128
testCompile 'org.springframework.batch:spring-batch-test:3.0.6.RELEASE'
3229
testCompile 'junit:junit:4.12'
3330
testCompile 'xmlunit:xmlunit:1.3'
@@ -44,6 +41,25 @@ task sourcesJar(type: Jar, dependsOn: classes) {
4441
from sourceSets.main.allSource
4542
}
4643

44+
task npmInstallTraceUI(type:Exec) {
45+
workingDir './src/trace-ui'
46+
commandLine 'npm', 'install'
47+
}
48+
49+
task buildTraceUI(type:Exec) {
50+
workingDir './src/trace-ui'
51+
commandLine 'npm', 'run', 'build'
52+
dependsOn tasks.npmInstallTraceUI
53+
}
54+
55+
task watchTraceUI(type:Exec) {
56+
workingDir './src/trace-ui'
57+
commandLine 'npm', 'start'
58+
dependsOn tasks.npmInstallTraceUI
59+
}
60+
61+
build.dependsOn buildTraceUI
62+
4763
javadoc {
4864
options.overview = 'src/main/resources/overview.html'
4965
}

marklogic-data-hub/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ mlSchemasDbName=data-hub-SCHEMAS
2828

2929
hubModulesPath=exmaples/hr-hub/plugins
3030

31-
version=1.0.0-beta.5
31+
version=1.0.0-beta.6
3232

3333

marklogic-data-hub/src/main/java/com/marklogic/hub/CollectorManager.java

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

0 commit comments

Comments
 (0)