Make sure MavenBuildWriter uses https link wherever possible

This commit is contained in:
Stephane Nicoll
2019-08-18 13:35:47 +02:00
parent 11914b0630
commit f083e6e5cd
21 changed files with 21 additions and 21 deletions

View File

@@ -68,7 +68,7 @@ public class MavenBuildWriter {
"<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
writer.indented(() -> {
writer.println(
"xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">");
"xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">");
writeSingleElement(writer, "modelVersion", "4.0.0");
whenWritten.run();
});