You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description 'Read spec-rest.json and remove « and » characters and rename [Custom Tag] to [Custom Tag Audit] to avoid collision with [Custom tag] (lower case). Write modified file to task temporaryDir'
63
+
description 'Read spec-rest.json and remove « and » characters and rename [Custom Tag] to [Custom Tag Audit] to avoid collision with [Custom tag] (lower case), also rename URI to URI_1 to avoid collision with java.net.URI in Resource.java. Write modified file to task temporaryDir'
65
64
into(modifiedSpecDir)
66
65
from(originalSpecDir) {
67
66
filteringCharset ="UTF-8"
68
67
filter({ Stringline->
69
68
line.replaceAll(/[\u00ab\u00bb]/, "") // [«»]
70
69
.replaceAll(/([\/<"])Custom Tag([>"])/, '$1Custom Tag Audit$2') // upper case [Custom Tag]
70
+
.replaceAll(/([\/"])URI"/, '$1URI_1"') // avoid collision with java.net.URI
0 commit comments