Skip to content

Commit 23359fa

Browse files
committed
Use HTTPS to fetch XSD files
1 parent a52a4b5 commit 23359fa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ limitations under the License.
1919
To produce reports, use the reporting profile, for example: mvn -Preporting clean site
2020
You may need to use the -U option to update your environment if you get an error.
2121
-->
22-
<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">
22+
<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/maven-v4_0_0.xsd">
2323
<modelVersion>4.0.0</modelVersion>
2424
<parent>
2525
<groupId>org.apache.commons</groupId>

src/assembly/bin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
-->
1717
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 http://maven.apache.org/xsd/assembly-2.2.0.xsd">
19+
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
2020
<id>bin</id>
2121
<formats>
2222
<format>tar.gz</format>

src/assembly/src.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
-->
1717
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 http://maven.apache.org/xsd/assembly-2.2.0.xsd">
19+
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
2020
<id>src</id>
2121
<formats>
2222
<format>tar.gz</format>

src/conf/pmd.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
<ruleset name="mybraces"
1919
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
2020
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 http://pmd.sourceforge.net/ruleset_2_0_0.xsd">
21+
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.net/ruleset_2_0_0.xsd">
2222
<description>Excludes from default PMD rules.</description>
2323
<rule ref="category/java/codestyle.xml">
2424
<exclude name="UselessParentheses"/>

0 commit comments

Comments
 (0)