Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 796d856

Browse files
committed
Removed bintray plugin, fixed javadoc errors, bumped Gradle to 7.1
1 parent 8c96a6d commit 796d856

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
id "java-library"
33
id "maven-publish"
44
id "signing"
5-
id "com.jfrog.bintray" version "1.8.4"
65
id "com.github.jk1.dependency-license-report" version "1.3"
76

87
id "net.saliman.properties" version "1.5.1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/com/marklogic/client/ext/datamovement/consumer/WriteToZipConsumer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
import java.util.zip.ZipOutputStream;
1212

1313
/**
14-
* Intended to be used with DMSDK's ExportListener class as a Consumer<DocumentRecord>. Supports writing all documents
15-
* to a single zip file.
14+
* Intended to be used with DMSDK's ExportListener class. Supports writing all documents to a single zip file.
1615
*
1716
* If a File is used to construct this class, be sure to call close() after all of the documents have been written, so
1817
* that the ZipOutputStream that is opened on the File is properly closed.

src/main/java/com/marklogic/client/ext/datamovement/listener/ExportBatchesToDirectoryListener.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public ExportBatchesToDirectoryListener(File exportDir) {
3737
* Uses a FileWriter to write the batch to a single file.
3838
*
3939
* @param queryBatch
40-
* @throws IOException
4140
*/
4241
protected void exportBatch(QueryBatch queryBatch) {
4342
File file = getFileForBatch(queryBatch, exportDir);

src/main/java/com/marklogic/client/ext/datamovement/util/EvalResultIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.Iterator;
66

77
/**
8-
* Adapts an Iterator<EvalResult> to an Iterator<String> so that it can be used easily with a DMSDK QueryBatcher.
8+
* Adapts an Iterator of EvalResults to an Iterator of Strings so that it can be used easily with a DMSDK QueryBatcher.
99
*/
1010
public class EvalResultIterator implements Iterator<String> {
1111

0 commit comments

Comments
 (0)