Skip to content

Commit f6b4a3c

Browse files
committed
MLE-25780 Updating references to marklogic-community
1 parent 6fd1bbf commit f6b4a3c

File tree

14 files changed

+32
-32
lines changed

14 files changed

+32
-32
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
![GitHub release](https://img.shields.io/github/release/marklogic-community/marklogic-unit-test.svg)
2-
![GitHub last commit](https://img.shields.io/github/last-commit/marklogic-community/marklogic-unit-test.svg)
1+
![GitHub release](https://img.shields.io/github/release/marklogic/marklogic-unit-test.svg)
2+
![GitHub last commit](https://img.shields.io/github/last-commit/marklogic/marklogic-unit-test.svg)
33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44

55
# Easy testing of custom MarkLogic modules
@@ -19,5 +19,5 @@ marklogic-unit-test includes the following components:
1919
popular Java testing frameworks. As of the 2.0.0 release, these now require Java 17 or higher.
2020
4. A REST endpoint for integrating with testing frameworks in any language.
2121

22-
Please see [the user guide](https://marklogic-community.github.io/marklogic-unit-test/) to get started with adding
22+
Please see [the user guide](https://marklogic.github.io/marklogic-unit-test/) to get started with adding
2323
marklogic-unit-test to your project.

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ logo: "/assets/ProgressMarkLogic_PrimaryLogo_Stacked.svg"
99

1010
# Aux links for the upper right navigation
1111
aux_links:
12-
"marklogic-community/marklogic-unit-test":
13-
- "https://github.com/marklogic-community/marklogic-unit-test"
12+
"marklogic/marklogic-unit-test":
13+
- "https://github.com/marklogic/marklogic-unit-test"
1414

1515
# Makes Aux links open in a new tab. Default is false
1616
aux_links_new_tab: false

docs/assertion-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ nav_order: 7
55
---
66

77
The list below captures the assertion functions available in the marklogic-unit-test `/test/test-helper.xqy` module.
8-
You can also [browse the source code](https://github.com/marklogic-community/marklogic-unit-test/blob/master/marklogic-unit-test-modules/src/main/ml-modules/root/test/test-helper.xqy)
8+
You can also [browse the source code](https://github.com/marklogic/marklogic-unit-test/blob/master/marklogic-unit-test-modules/src/main/ml-modules/root/test/test-helper.xqy)
99
for this module to examine these functions.
1010

1111
```

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ running a simple test.
99

1010
## Example project description
1111

12-
The [example project](https://github.com/marklogic-community/marklogic-unit-test/tree/master/examples/getting-started)
12+
The [example project](https://github.com/marklogic/marklogic-unit-test/tree/master/examples/getting-started)
1313
for this guide is a simple MarkLogic application with a
1414
[custom REST endpoint](https://docs.marklogic.com/guide/rest-dev/extensions) named "thesaurus". The endpoint
1515
returns thesaurus entries via the `/example/lib.sjs` module located at `src/main/ml-modules/root` in the project.
@@ -66,7 +66,7 @@ The above configuration enables the ml-gradle `mlUnitTest` task to access the `m
6666
allowing it to run your marklogic-unit-test tests.
6767

6868
If you are not using ml-gradle, you will need to manually add the marklogic-unit-test modules to your project. Please
69-
see [the marklogic-unit-test releases](https://github.com/marklogic-community/marklogic-unit-test/releases) for
69+
see [the marklogic-unit-test releases](https://github.com/marklogic/marklogic-unit-test/releases) for
7070
zip files containing these modules.
7171

7272
## Writing a test

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ If you have any questions or run into issues while using marklogic-unit-test, tr
2929

3030
1. Check for a similar question [on Stack Overflow](https://stackoverflow.com/questions/tagged/marklogic).
3131
2. If you don't find a similar question, [ask one yourself](https://stackoverflow.com/questions/ask?tags=marklogic).
32-
3. Or [submit an issue](https://github.com/marklogic-community/marklogic-unit-test/issues/new); expect a response
32+
3. Or [submit an issue](https://github.com/marklogic/marklogic-unit-test/issues/new); expect a response
3333
within a day or two.

docs/running-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ tests. Any failed test will display a message capturing the assertion failure.
5050

5151
## Using JUnit5
5252

53-
The [marklogic-junit5 library](https://github.com/marklogic-community/marklogic-unit-test/tree/master/marklogic-junit5)
53+
The [marklogic-junit5 library](https://github.com/marklogic/marklogic-unit-test/tree/master/marklogic-junit5)
5454
within this project provides support for testing REST endpoints in MarkLogic. It also supports running your
5555
marklogic-unit-test tests as part of a JUnit test suite. This allows for a single test run to execute and report on
5656
all of your tests - both your JUnit5 tests that invoke REST endpoints in MarkLogic and each of your marklogic-unit-test
5757
test modules.
5858

5959
For further information, see
60-
[the marklogic-junit5 example project](https://github.com/marklogic-community/marklogic-unit-test/tree/master/marklogic-junit5/examples/simple-ml-gradle)
60+
[the marklogic-junit5 example project](https://github.com/marklogic/marklogic-unit-test/tree/master/marklogic-junit5/examples/simple-ml-gradle)
6161
that describes the configuration necessary.
6262

6363
## Using the marklogic-unit-test REST extension

docs/writing-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ nav_order: 3
77
This guide is a reference on the different kinds of test modules, setup modules, and teardown modules you can write
88
and run with marklogic-unit-test. The examples shown in this page can be found
99
in the `src/test/ml-modules/root/test/suites/thesaurus` directory in the
10-
[test-examples project](https://github.com/marklogic-community/marklogic-unit-test/tree/master/examples/test-examples).
10+
[test-examples project](https://github.com/marklogic/marklogic-unit-test/tree/master/examples/test-examples).
1111

1212
## Location of test files
1313

marklogic-junit5/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This library makes that as simple as possible by providing the following support
88
configuration you've already defined in your project
99
1. Clear your test database before a test run so it always runs in a known state
1010
1. Easily read and make assertions on JSON and XML documents, including support for XPath-based assertions
11-
1. Easily integrate [marklogic-unit-test](https://github.com/marklogic-community/marklogic-unit-test) tests into a JUnit test suite
11+
1. Easily integrate [marklogic-unit-test](https://github.com/marklogic/marklogic-unit-test) tests into a JUnit test suite
1212

1313
Below is a simple example of a JUnit test that writes a couple documents, runs a search on them, and then reads them
1414
back and verifies the contents of each document:
@@ -45,7 +45,7 @@ As of DHF 5.5, support exists within DHF 5 for writing tests and should be used
4545
See [this example project](https://github.com/marklogic/marklogic-data-hub/tree/master/examples/reference-entity-model#testing-support)
4646
for more information.
4747

48-
If you're using DHF 4, see [the DHF 4 example project](https://github.com/marklogic-community/marklogic-unit-test/tree/1.0.0/marklogic-junit5/examples/simple-dhf4)
48+
If you're using DHF 4, see [the DHF 4 example project](https://github.com/marklogic/marklogic-unit-test/tree/1.0.0/marklogic-junit5/examples/simple-dhf4)
4949
from the 1.0.0 tag of this repository.
5050

5151
## Running the tests within this project

marklogic-junit5/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ publishing {
4444
name = "${group}:${project.name}"
4545
description = "Supports testing MarkLogic applications"
4646
packaging = "jar"
47-
url = "https://github.com/marklogic-community/${project.name}"
47+
url = "https://github.com/marklogic/${project.name}"
4848
licenses {
4949
license {
5050
name = "The Apache License, Version 2.0"
@@ -61,9 +61,9 @@ publishing {
6161
}
6262
}
6363
scm {
64-
url = "git@github.com:marklogic-community/${project.name}.git"
65-
connection = "scm:git@github.com:marklogic-community/${project.name}.git"
66-
developerConnection = "scm:git@github.com:marklogic-community/${project.name}.git"
64+
url = "git@github.com:marklogic/${project.name}.git"
65+
connection = "scm:git@github.com:marklogic/${project.name}.git"
66+
developerConnection = "scm:git@github.com:marklogic/${project.name}.git"
6767
}
6868
}
6969
}

marklogic-junit5/examples/simple-ml-gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This project shows a basic setup for writing JUnit tests with marklogic-junit5 against an application deployed
2-
with [ml-gradle](https://github.com/marklogic-community/ml-gradle). In addition, it includes an example of executing
3-
tests written using [marklogic-unit-test](https://github.com/marklogic-community/marklogic-unit-test) via JUnit.
2+
with [ml-gradle](https://github.com/marklogic/ml-gradle). In addition, it includes an example of executing
3+
tests written using [marklogic-unit-test](https://github.com/marklogic/marklogic-unit-test) via JUnit.
44

55
## Trying the project out locally
66

0 commit comments

Comments
 (0)