Skip to content

Commit 571fb29

Browse files
authored
Merge pull request #42 from marklogic-community/develop
Release v0.12.0
2 parents fb1cf84 + 9cbbc4e commit 571fb29

File tree

73 files changed

+183
-75
lines changed

Some content is hidden

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

73 files changed

+183
-75
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@
44
.DS_Store
55
build
66
out
7+
.classpath
8+
.settings
9+
.project
10+
marklogic-unit-test-client/bin/
11+
gradle-local.properties
12+
.vscode

.travis/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
if [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ] ; then
4-
cd ml-unit-test-client
4+
cd marklogic-unit-test-client
55
../gradlew build test
66
fi

CHANGELOG.md

Lines changed: 73 additions & 0 deletions

CONTRIBUTING.md

Lines changed: 17 additions & 17 deletions

README.md

Lines changed: 29 additions & 2 deletions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=com.marklogic
2-
version=0.11.2
2+
version=0.12.0

ml-unit-test-client/build.gradle renamed to marklogic-unit-test-client/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ publishing {
3636
publications {
3737
mainJava(MavenPublication) {
3838
from components.java
39-
artifactId "ml-unit-test-client"
39+
artifactId "marklogic-unit-test-client"
4040
}
4141
sourcesJava(MavenPublication) {
4242
from components.java
43-
artifactId "ml-unit-test-client"
43+
artifactId "marklogic-unit-test-client"
4444
artifact sourcesJar
4545
}
4646
}
@@ -52,10 +52,11 @@ if (project.hasProperty("myBintrayUser")) {
5252
key = myBintrayKey
5353
publications = ["mainJava", "sourcesJava"]
5454
pkg {
55-
repo = "maven"
55+
repo = "Maven"
5656
name = project.name
57+
userOrg = 'marklogic-community'
5758
licenses = ["Apache-2.0"]
58-
vcsUrl = "https://github.com/rjrudin/" + project.name + ".git"
59+
vcsUrl = "https://github.com/marklogic-community/" + project.name + ".git"
5960
version {
6061
name = project.version
6162
released = new Date()
@@ -75,7 +76,7 @@ import module namespace sec = "http://marklogic.com/xdmp/security"
7576
declare option xdmp:mapping "false";
7677
7778
try {
78-
sec:remove-credential("ml-unit-test-credentials")
79+
sec:remove-credential("marklogic-unit-test-credentials")
7980
} catch (\$e) {()};
8081
8182
xquery version "1.0-ml";
@@ -86,7 +87,7 @@ import module namespace sec = "http://marklogic.com/xdmp/security"
8687
declare option xdmp:mapping "false";
8788
8889
sec:create-credential(
89-
"ml-unit-test-credentials",
90+
"marklogic-unit-test-credentials",
9091
"Credentials for ML Rest Helper Calls",
9192
"${mlUsername}",
9293
"${mlPassword}",
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These properties are used for the test application that ml-gradle deploys so we can test out marklogic-unit-test
2+
mlAppName=marklogic-unit-test-testapp
3+
mlHost=localhost
4+
mlUsername=admin
5+
mlPassword=admin
6+
mlRestPort=8090
7+
8+
# Load both the marklogic-unit-test framework code and some test modules
9+
mlModulePaths=../marklogic-unit-test-modules/src/main/ml-modules,src/test/ml-modules
10+
11+
# This defaults to src/main/ml-config, but marklogic-unit-test doesn't have any configuration files itself. So the config
12+
# files are stored under src/test for the sole purpose of running tests on marklogic-unit-test.
13+
mlConfigPath=src/test/ml-config

0 commit comments

Comments
 (0)