We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d70a2 commit 979887bCopy full SHA for 979887b
gradle/verifier.gradle
@@ -4,6 +4,8 @@ import org.xml.sax.ErrorHandler
4
import org.xml.sax.SAXException
5
import org.xml.sax.SAXParseException
6
7
+import java.util.regex.Matcher
8
+
9
task cleanPublications(type: Delete) {
10
delete new File(rootProject.buildDir, 'm2')
11
}
@@ -122,7 +124,7 @@ task verifyPublications(dependsOn: { [cleanPublications] + kinds.collect { "publ
122
124
validatePom(file)
123
125
126
- def groupDir = new File(m2, project.group.replaceAll(/\./, File.separator))
127
+ def groupDir = new File(m2, project.group.replaceAll(/\./, Matcher.quoteReplacement(File.separator)))
128
def verified = 0
129
130
groupDir.eachDir { artifactDir ->
0 commit comments