Skip to content

Commit 8f5af99

Browse files
author
ehennum
committed
move endpoint declaration to server Config directory (server bug 50518)
1 parent 78ee6c0 commit 8f5af99

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

marklogic-development-tools/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ publishing {
4646
pluginBundle {
4747
website = 'http://www.gradle.org/'
4848
vcsUrl = '[email protected]:marklogic/java-client-api.git'
49-
description = 'marklogic-client-tools plugin for developing data services on MarkLogic'
49+
description = 'ml-development-tools plugin for developing data services on MarkLogic'
5050
tags = ['marklogic', 'development tools', 'data services']
5151

5252
plugins {
5353
marklogicClientToolsPlugin {
54-
id = 'com.marklogic.client.tools'
55-
displayName = 'marklogic-client-tools Development Tools for MarkLogic'
54+
id = 'com.marklogic.ml-development-tools'
55+
displayName = 'ml-development-tools MarkLogic Data Service Tools'
5656
description = 'Gradle plugin for developing data services on MarkLogic'
5757
tags = ['marklogic', 'development tools', 'data services']
5858
version = project.version

marklogic-development-tools/src/test/java/com/marklogic/client/test/gradle/EndpointProxiesGenTaskTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void testTaskInit() throws IOException {
7272

7373
StringBuilder buildText = new StringBuilder()
7474
.append("plugins {\n")
75-
.append(" id 'com.marklogic.client.tools'\n")
75+
.append(" id 'com.marklogic.ml-development-tools'\n")
7676
.append("}\n")
7777
.append("task generateTestProxy(type: com.marklogic.client.tools.gradle.EndpointProxiesGenTask) {\n")
7878
.append(" serviceDeclarationFile = '"+testEnv.serviceDir.getPath()+"/service.json'\n")
@@ -99,7 +99,7 @@ public void testCommandLineInit() throws IOException {
9999

100100
StringBuilder buildText = new StringBuilder()
101101
.append("plugins {\n")
102-
.append(" id 'com.marklogic.client.tools'\n")
102+
.append(" id 'com.marklogic.ml-development-tools'\n")
103103
.append("}\n");
104104
writeBuildFile(buildText);
105105

@@ -126,7 +126,7 @@ public void testPropertiesFile() throws IOException {
126126

127127
StringBuilder fileText = new StringBuilder()
128128
.append("plugins {\n")
129-
.append(" id 'com.marklogic.client.tools'\n")
129+
.append(" id 'com.marklogic.ml-development-tools'\n")
130130
.append("}\n");
131131
writeBuildFile(fileText);
132132

@@ -156,7 +156,7 @@ public void testConfig() throws IOException {
156156

157157
StringBuilder buildText = new StringBuilder()
158158
.append("plugins {\n")
159-
.append(" id 'com.marklogic.client.tools'\n")
159+
.append(" id 'com.marklogic.ml-development-tools'\n")
160160
.append("}\n")
161161
.append("ext {\n")
162162
.append(" endpointProxiesConfig {\n")
@@ -185,7 +185,7 @@ public void testJavaDefault() throws IOException {
185185

186186
StringBuilder buildText = new StringBuilder()
187187
.append("plugins {\n")
188-
.append(" id 'com.marklogic.client.tools'\n")
188+
.append(" id 'com.marklogic.ml-development-tools'\n")
189189
.append("}\n")
190190
.append("task generateTestProxy(type: com.marklogic.client.tools.gradle.EndpointProxiesGenTask) {\n")
191191
.append(" serviceDeclarationFile = '"+testEnv.serviceDir.getPath()+"/service.json'\n")

marklogic-development-tools/src/test/java/com/marklogic/client/test/gradle/ModuleInitTaskTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void testCommandLineInitXQY() throws IOException {
105105
public void runTaskInitTest(File apiFile, String modExtension, File buildFile, File outDir) throws IOException {
106106
StringBuilder buildText = new StringBuilder()
107107
.append("plugins {\n")
108-
.append(" id 'com.marklogic.client.tools'\n")
108+
.append(" id 'com.marklogic.ml-development-tools'\n")
109109
.append("}\n")
110110
.append("task initModuleTest(type: com.marklogic.client.tools.gradle.ModuleInitTask) {\n")
111111
.append(" endpointDeclarationFile = '"+apiFile.getPath()+"'\n")
@@ -130,7 +130,7 @@ public void runTaskInitTest(File apiFile, String modExtension, File buildFile, F
130130
public void runCommandLineInitTest(File apiFile, String modExtension, File buildFile, File outDir) throws IOException {
131131
StringBuilder buildText = new StringBuilder()
132132
.append("plugins {\n")
133-
.append(" id 'com.marklogic.client.tools'\n")
133+
.append(" id 'com.marklogic.ml-development-tools'\n")
134134
.append("}\n");
135135
writeBuildFile(buildText);
136136

0 commit comments

Comments
 (0)