Skip to content

Commit

Permalink
Changed some references to marklogic-community
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed May 8, 2023
1 parent 88e6101 commit 27781f8
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ assignees: ''

---

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.
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.

**Describe the bug**
A clear and concise description of what the bug is.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![GitHub release](https://img.shields.io/github/release/marklogic-community/ml-gradle.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/marklogic-community/ml-gradle.svg)
![GitHub release](https://img.shields.io/github/release/marklogic/ml-gradle.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/marklogic/ml-gradle.svg)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Known Vulnerabilities](https://snyk.io/test/github/marklogic-community/ml-gradle/badge.svg)](https://snyk.io/test/github/marklogic-community/ml-gradle)
[![Known Vulnerabilities](https://snyk.io/test/github/marklogic/ml-gradle/badge.svg)](https://snyk.io/test/github/marklogic/ml-gradle)

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

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

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

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

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ publishing {
name = "${group}:${project.name}"
description = "Gradle plugin for automating everything involving MarkLogic"
packaging = "jar"
url = "https://github.com/marklogic-community/${project.name}"
url = "https://github.com/marklogic/${project.name}"
licenses {
license {
name = "The Apache License, Version 2.0"
Expand All @@ -106,9 +106,9 @@ publishing {
}
}
scm {
url = "git@github.com:marklogic-community/${project.name}.git"
connection = "scm:git@github.com:marklogic-community/${project.name}.git"
developerConnection = "scm:git@github.com:marklogic-community/${project.name}.git"
url = "git@github.com:marklogic/${project.name}.git"
connection = "scm:git@github.com:marklogic/${project.name}.git"
developerConnection = "scm:git@github.com:marklogic/${project.name}.git"
}
}
from components.java
Expand Down Expand Up @@ -138,7 +138,7 @@ publishing {

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

Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ After you've deployed and examined/tested the application, you can undeploy it v
./gradlew -i -Pconfirm=true mlUndeploy

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

2 changes: 1 addition & 1 deletion examples/dependency-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Which should return:
66.6666666666667
```

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


Expand Down
2 changes: 1 addition & 1 deletion examples/failover-project/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This project shows an example of configuring replica forests for the out-of-the-box databases that are typically worth
enabling failover. See https://github.com/marklogic-community/ml-gradle/wiki/Property-reference for more properties
enabling failover. See https://github.com/marklogic/ml-gradle/wiki/Property-reference for more properties
for configuring the replica forests that are created.

Note that you'll need to run this against a cluster with at least two nodes (failover requires three nodes, but you
Expand Down
2 changes: 1 addition & 1 deletion examples/mlcp-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ task importRdf(type: com.marklogic.gradle.task.MlcpTask) {

/**
* Example of importing semicolon-delimited text, in reference to:
* https://github.com/marklogic-community/ml-gradle/issues/90
* https://github.com/marklogic/ml-gradle/issues/90
*/
task importSemicolonDelimitedText(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
Expand Down
2 changes: 1 addition & 1 deletion examples/partition-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To try this example out, first deploy the application:
This will result in 3 forests - one "default" forest with no partition assigned, and then two forests based on
partitions - "myDate-2011" and "myDate-2012". Note also that the "mlAddHostNameTokens" property is set so that the
partition files can refer to a host name dynamically via the "mlHostName1" token as opposed to being hardcoded to a
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.
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.

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

Expand Down
2 changes: 1 addition & 1 deletion examples/redaction-ruleset-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ These files contain the definitions for the applicable collections to be applied

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

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
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

See [Redacting Document Content](http://docs.marklogic.com/guide/app-dev/redaction) for more information on redacting content
2 changes: 1 addition & 1 deletion examples/sample-project/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mlManagePassword=password

# Starting with 3.4.0, mlSecurityUsername should be set when the value of mlManageUsername is either not a user with
# the "security" role or is a user defined within the project, in which case some existing ML user is needed to create
# the user. See https://github.com/marklogic-community/ml-gradle/wiki/Configuring-different-users-for-different-jobs
# the user. See https://github.com/marklogic/ml-gradle/wiki/Configuring-different-users-for-different-jobs
# for more information.
#
# If these properties are not set, then mlUsername/mlPassword will be used.
Expand Down
2 changes: 1 addition & 1 deletion examples/unit-test-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ And you can run the original UI test runner by going to:
Prior to ml-gradle 3.8.1, the mlUnitTest task will connect to mlTestRestPort if it's set, else mlRestPort.

Starting in release 3.8.1, you can configure which REST API server mlUnitTest will connect to. The mlUnitTest task now
exposes a property of type [DatabaseClientConfig](https://github.com/marklogic-community/ml-javaclient-util/blob/master/src/main/java/com/marklogic/client/ext/DatabaseClientConfig.java).
exposes a property of type [DatabaseClientConfig](https://github.com/marklogic/ml-javaclient-util/blob/master/src/main/java/com/marklogic/client/ext/DatabaseClientConfig.java).
You can configure the properties of this object, and mlUnitTest will use it for creating a connection to MarkLogic.

Below is an example of configuring the mlUnitTest task in build.gradle - note that you need to configure every property necessary for the type of connection you want, as
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It is not intended to be used to build this project.
<version>4.5.2</version>
<name>com.marklogic:ml-gradle</name>
<description>Gradle plugin for automating everything involving MarkLogic</description>
<url>https://github.com/marklogic-community/ml-gradle</url>
<url>https://github.com/marklogic/ml-gradle</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
Expand All @@ -32,9 +32,9 @@ It is not intended to be used to build this project.
</developer>
</developers>
<scm>
<connection>scm:git@github.com:marklogic-community/ml-gradle.git</connection>
<developerConnection>scm:git@github.com:marklogic-community/ml-gradle.git</developerConnection>
<url>git@github.com:marklogic-community/ml-gradle.git</url>
<connection>scm:git@github.com:marklogic/ml-gradle.git</connection>
<developerConnection>scm:git@github.com:marklogic/ml-gradle.git</developerConnection>
<url>git@github.com:marklogic/ml-gradle.git</url>
</scm>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class NewProjectTask extends MarkLogicTask {
def now = new Date()

def propertiesText = "# Properties generated by mlNewProject at ${now}" +
"\n# See https://github.com/marklogic-community/ml-gradle/wiki/Property-reference for a list of all supported properties" +
"\n# See https://github.com/marklogic/ml-gradle/wiki/Property-reference for a list of all supported properties" +
"\nmlAppName=${ant.mlAppName}" +
"\nmlHost=${ant.mlHost}" +
"\nmlUsername=${ant.mlUsername}" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ class PrintPropertiesTask extends MarkLogicTask {

println "\nThe Manage server connection properties, Admin server connection properties, and " +
"application properties are listed above, with each set in alphabetical order. \nFor a list of " +
"all properties with documentation, see https://github.com/marklogic-community/ml-gradle/wiki/Property-reference ."
"all properties with documentation, see https://github.com/marklogic/ml-gradle/wiki/Property-reference ."
}
}

0 comments on commit 27781f8

Please sign in to comment.