Skip to content

Commit 27781f8

Browse files
committed
Changed some references to marklogic-community
1 parent 88e6101 commit 27781f8

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ assignees: ''
77

88
---
99

10-
Please use the debugging guide first to see if you can identify the problem - https://github.com/marklogic-community/ml-gradle/wiki/Debugging-guide . That addresses the most common bugs, such as not being able to load modules, or getting any error when deploying a particular resource, or getting any error with one of the data movement asks.
10+
Please use the debugging guide first to see if you can identify the problem - https://github.com/marklogic/ml-gradle/wiki/Debugging-guide . That addresses the most common bugs, such as not being able to load modules, or getting any error when deploying a particular resource, or getting any error with one of the data movement asks.
1111

1212
**Describe the bug**
1313
A clear and concise description of what the bug is.

README.md

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

66
Automate everything involving MarkLogic with Gradle
77
=========
@@ -14,11 +14,11 @@ ml-gradle either automates it already or can be extended to do so.
1414

1515
You can use ml-gradle right away with the simple tutorial below, or learn more:
1616

17-
- The [ml-gradle Wiki](https://github.com/marklogic-community/ml-gradle/wiki) guides you through all of the ml-gradle documentation
18-
- Read the [Getting Started guide](https://github.com/marklogic-community/ml-gradle/wiki/Getting-started) for more details on setting up a new project
19-
- Browse the [example projects](https://github.com/marklogic-community/ml-gradle/tree/master/examples) for working examples of different ml-gradle features
17+
- The [ml-gradle Wiki](https://github.com/marklogic/ml-gradle/wiki) guides you through all of the ml-gradle documentation
18+
- Read the [Getting Started guide](https://github.com/marklogic/ml-gradle/wiki/Getting-started) for more details on setting up a new project
19+
- Browse the [example projects](https://github.com/marklogic/ml-gradle/tree/master/examples) for working examples of different ml-gradle features
2020

21-
**Don't want to use Gradle?** Then consider using [the ml-app-deployer Java library](https://github.com/marklogic-community/ml-app-deployer)
21+
**Don't want to use Gradle?** Then consider using [the ml-app-deployer Java library](https://github.com/marklogic/ml-app-deployer)
2222
on which ml-gradle depends. ml-app-deployer provides most of the functionality within ml-gradle without having any dependency on Gradle or
2323
Groovy - ml-gradle is then a fairly thin wrapper around ml-app-deployer to expose its functionality within a Gradle environment.
2424

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ publishing {
8989
name = "${group}:${project.name}"
9090
description = "Gradle plugin for automating everything involving MarkLogic"
9191
packaging = "jar"
92-
url = "https://github.com/marklogic-community/${project.name}"
92+
url = "https://github.com/marklogic/${project.name}"
9393
licenses {
9494
license {
9595
name = "The Apache License, Version 2.0"
@@ -106,9 +106,9 @@ publishing {
106106
}
107107
}
108108
scm {
109-
url = "git@github.com:marklogic-community/${project.name}.git"
110-
connection = "scm:git@github.com:marklogic-community/${project.name}.git"
111-
developerConnection = "scm:git@github.com:marklogic-community/${project.name}.git"
109+
url = "git@github.com:marklogic/${project.name}.git"
110+
connection = "scm:git@github.com:marklogic/${project.name}.git"
111+
developerConnection = "scm:git@github.com:marklogic/${project.name}.git"
112112
}
113113
}
114114
from components.java
@@ -138,7 +138,7 @@ publishing {
138138

139139
pluginBundle {
140140
website = 'https://www.marklogic.com/'
141-
vcsUrl = 'https://github.com/marklogic-community/' + project.name + '.git'
141+
vcsUrl = 'https://github.com/marklogic/' + project.name + '.git'
142142
description = 'Publishes ml-gradle'
143143
tags = ['marklogic']
144144

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ After you've deployed and examined/tested the application, you can undeploy it v
2121
./gradlew -i -Pconfirm=true mlUndeploy
2222

2323
Please note that these example projects are not re-tested with every ml-gradle release. If you run into a problem with
24-
any of them, please file an [issue with ml-gradle](https://github.com/marklogic-community/ml-gradle/wiki).
24+
any of them, please file an [issue with ml-gradle](https://github.com/marklogic/ml-gradle/wiki).
2525

examples/dependency-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Which should return:
107107
66.6666666666667
108108
```
109109

110-
See [Loading data](https://github.com/marklogic-community/ml-app-deployer/wiki/Loading-data) for more
110+
See [Loading data](https://github.com/marklogic/ml-app-deployer/wiki/Loading-data) for more
111111
information on configuring how data is loaded during a deployment.
112112

113113

examples/failover-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
This project shows an example of configuring replica forests for the out-of-the-box databases that are typically worth
2-
enabling failover. See https://github.com/marklogic-community/ml-gradle/wiki/Property-reference for more properties
2+
enabling failover. See https://github.com/marklogic/ml-gradle/wiki/Property-reference for more properties
33
for configuring the replica forests that are created.
44

55
Note that you'll need to run this against a cluster with at least two nodes (failover requires three nodes, but you

examples/mlcp-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ task importRdf(type: com.marklogic.gradle.task.MlcpTask) {
8181

8282
/**
8383
* Example of importing semicolon-delimited text, in reference to:
84-
* https://github.com/marklogic-community/ml-gradle/issues/90
84+
* https://github.com/marklogic/ml-gradle/issues/90
8585
*/
8686
task importSemicolonDelimitedText(type: com.marklogic.gradle.task.MlcpTask) {
8787
classpath = configurations.mlcp

examples/partition-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To try this example out, first deploy the application:
1818
This will result in 3 forests - one "default" forest with no partition assigned, and then two forests based on
1919
partitions - "myDate-2011" and "myDate-2012". Note also that the "mlAddHostNameTokens" property is set so that the
2020
partition files can refer to a host name dynamically via the "mlHostName1" token as opposed to being hardcoded to a
21-
specific host name. See these [ml-app-deployer docs](https://github.com/marklogic-community/ml-app-deployer/wiki/Scheduled-Tasks#referring-to-host-names-in-scheduled-task-files) for more information.
21+
specific host name. See these [ml-app-deployer docs](https://github.com/marklogic/ml-app-deployer/wiki/Scheduled-Tasks#referring-to-host-names-in-scheduled-task-files) for more information.
2222

2323
You can then insert documents via qconsole (or any other ML interface) to test out the range assignments - e.g.
2424

examples/redaction-ruleset-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ These files contain the definitions for the applicable collections to be applied
1010

1111
***Note***: Rulesets must have a .json or .xml file extension.
1212

13-
See [Specifying collections and permissions](https://github.com/marklogic-community/ml-javaclient-util/wiki/Loading-files#specifying-collections-and-permissions) for information on how to apply the collections and permission when the rulesets are loaded
13+
See [Specifying collections and permissions](https://github.com/marklogic/ml-javaclient-util/wiki/Loading-files#specifying-collections-and-permissions) for information on how to apply the collections and permission when the rulesets are loaded
1414

1515
See [Redacting Document Content](http://docs.marklogic.com/guide/app-dev/redaction) for more information on redacting content

examples/sample-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ mlManagePassword=password
4141

4242
# Starting with 3.4.0, mlSecurityUsername should be set when the value of mlManageUsername is either not a user with
4343
# the "security" role or is a user defined within the project, in which case some existing ML user is needed to create
44-
# the user. See https://github.com/marklogic-community/ml-gradle/wiki/Configuring-different-users-for-different-jobs
44+
# the user. See https://github.com/marklogic/ml-gradle/wiki/Configuring-different-users-for-different-jobs
4545
# for more information.
4646
#
4747
# If these properties are not set, then mlUsername/mlPassword will be used.

0 commit comments

Comments
 (0)