Skip to content

Commit fbb85e6

Browse files
authored
Merge pull request #1454 from marklogic/feature/doc-updates
Updated functional test README, bumped to 6.0.0-SNAPSHOT
2 parents f591a30 + 0969e40 commit fbb85e6

File tree

104 files changed

+55
-56
lines changed

Some content is hidden

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

104 files changed

+55
-56
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ out
3030
uriCache.txt
3131
gradle-local.properties
3232
bin
33+
repairXMLFull.xml
34+
xml-with-props.xml
35+

README.md

Lines changed: 5 additions & 2 deletions

build.gradle

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1+
// We need the properties plugin to work on both marklogic-client-api and test-app. The 'plugins' Gradle syntax can't be
2+
// used for that. So we have to add the properties plugin to the buildscript classpath and then apply the properties
3+
// plugin via subprojects below.
4+
buildscript {
5+
repositories {
6+
maven {
7+
url "https://plugins.gradle.org/m2/"
8+
}
9+
}
10+
dependencies {
11+
classpath "net.saliman:gradle-properties-plugin:1.5.2"
12+
}
13+
}
14+
115
subprojects {
16+
apply plugin: "net.saliman.properties"
217
apply plugin: 'java'
318

419
tasks.withType(JavaCompile) {
@@ -27,8 +42,5 @@ subprojects {
2742
systemProperty "file.encoding", "UTF-8"
2843
systemProperty "javax.xml.stream.XMLOutputFactory", "com.sun.xml.internal.stream.XMLOutputFactoryImpl"
2944
}
30-
}
3145

32-
task gradleWrapper(type: Wrapper) {
33-
gradleVersion = '6.7'
3446
}

gradle.properties

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
group=com.marklogic
2-
version=5.5-SNAPSHOT
3-
releaseVersion=5.5.3
2+
version=6.0-SNAPSHOT
43
describedName=MarkLogic Java Client API
54
publishUrl=file:../marklogic-java/releases
5+
6+
# Defined at this level so that they can be set as system properties and used by the marklogic-client-api and test-app
7+
# project
8+
mlHost=localhost
9+
mlPassword=admin

marklogic-client-api-functionaltests/README.md

Lines changed: 22 additions & 4 deletions

marklogic-client-api-functionaltests/myHelp.txt

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

marklogic-client-api-functionaltests/repairXMLFull.xml

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

marklogic-client-api-functionaltests/xml-with-props.xml

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

marklogic-client-api/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
plugins {
22
id 'maven-publish'
33
id 'distribution'
4-
5-
id "net.saliman.properties" version "1.5.1"
6-
id 'com.marklogic.ml-gradle' version '4.3.5'
74
}
85

96
group = 'com.marklogic'

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ rootProject.name = 'marklogic-client-api-parent'
22
include ':marklogic-client-api'
33
include ':marklogic-client-api-functionaltests'
44
include ':ml-development-tools'
5+
include ':test-app'

0 commit comments

Comments
 (0)