Skip to content

Commit bede125

Browse files
[MNG-8731] Use https for xsi:schemaLocation in generated descriptors
Attribute xml.schemaLocation is used by modello to generate documentations We have mixed http/https, so it should be fixed to use everywhere https
1 parent 3e9c164 commit bede125

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

api/maven-api-cli/src/main/mdo/core-extensions.mdo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<model xmlns="http://codehaus-plexus.github.io/MODELLO/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2424
xsi:schemaLocation="http://codehaus-plexus.github.io/MODELLO/2.0.0 https://codehaus-plexus.github.io/modello/xsd/modello-2.0.0.xsd"
2525
xml.namespace="http://maven.apache.org/EXTENSIONS/${version}"
26-
xml.schemaLocation="http://maven.apache.org/xsd/core-extensions-${version}.xsd">
26+
xml.schemaLocation="https://maven.apache.org/xsd/core-extensions-${version}.xsd">
2727

2828
<id>core-extensions</id>
2929
<name>CoreExtensions</name>

api/maven-api-plugin/src/main/mdo/lifecycle.mdo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ under the License.
2020
<model xmlns="http://codehaus-plexus.github.io/MODELLO/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121
xsi:schemaLocation="http://codehaus-plexus.github.io/MODELLO/2.0.0 https://codehaus-plexus.github.io/modello/xsd/modello-2.0.0.xsd"
2222
xml.namespace="http://maven.apache.org/LIFECYCLE/${version}"
23-
xml.schemaLocation="http://maven.apache.org/xsd/lifecycle-${version}.xsd">
23+
xml.schemaLocation="https://maven.apache.org/xsd/lifecycle-${version}.xsd">
2424
<id>lifecycle</id>
2525
<name>Lifecycle</name>
2626
<description>

api/maven-api-settings/src/main/mdo/settings.mdo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<model xmlns="http://codehaus-plexus.github.io/MODELLO/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2323
xsi:schemaLocation="http://codehaus-plexus.github.io/MODELLO/2.0.0 https://codehaus-plexus.github.io/modello/xsd/modello-2.0.0.xsd"
2424
xml.namespace="http://maven.apache.org/SETTINGS/${version}"
25-
xml.schemaLocation="http://maven.apache.org/xsd/settings-${version}.xsd">
25+
xml.schemaLocation="https://maven.apache.org/xsd/settings-${version}.xsd">
2626
<id>settings</id>
2727
<name>Settings</name>
2828
<description>

api/maven-api-toolchain/src/main/mdo/toolchains.mdo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<model xmlns="http://codehaus-plexus.github.io/MODELLO/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2323
xsi:schemaLocation="http://codehaus-plexus.github.io/MODELLO/2.0.0 https://codehaus-plexus.github.io/modello/xsd/modello-2.0.0.xsd"
2424
xml.namespace="http://maven.apache.org/TOOLCHAINS/${version}"
25-
xml.schemaLocation="http://maven.apache.org/xsd/toolchains-${version}.xsd">
25+
xml.schemaLocation="https://maven.apache.org/xsd/toolchains-${version}.xsd">
2626
<id>toolchains</id>
2727
<name>MavenToolchains</name>
2828
<description><![CDATA[

0 commit comments

Comments
 (0)