Herve Boutemy created MRELEASE-1032:
---------------------------------------
Summary: add https://m.a.o/xsd/maven-4.0.0.xsd schema instead of
http://m.a.o/maven-v4_0_0.xsd
Key: MRELEASE-1032
URL: https://issues.apache.org/jira/browse/MRELEASE-1032
Project: Maven Release Plugin
Issue Type: Improvement
Affects Versions: 2.5.3
Reporter: Herve Boutemy
Fix For: 3.0.0
currently, when release plugin adds a schema to POM, it adds it as http and old
maven-v4_0_0.xsd url:
{code:xml}<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">{code}
nowadays, it should be https and /xsd/maven-4.0.0.xsd:
{code:xml}<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
https://maven.apache.org/xsd/maven-4.0.0.xsd">{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)