Skip to content

Commit 3ff32ee

Browse files
authored
Use correct namespace URI to pass XML validation (#837)
Namespace URI can't be changed deliberately from http to https
1 parent 520d997 commit 3ff32ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
~ limitations under the License.
1616
-->
1717
<project
18-
xmlns="https://maven.apache.org/POM/4.0.0"
19-
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
18+
xmlns="http://maven.apache.org/POM/4.0.0"
19+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
2121
>
2222
<modelVersion>4.0.0</modelVersion>
2323

0 commit comments

Comments
 (0)