Skip to content

Commit 94e5c21

Browse files
URL Cleanup
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://example.org migrated to: https://example.org ([https](https://example.org) result 200). * http://www.apache.org/licenses/LICENSE-2.0 migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * http://www.apache.org/licenses/LICENSE-2.0.html migrated to: https://www.apache.org/licenses/LICENSE-2.0.html ([https](https://www.apache.org/licenses/LICENSE-2.0.html) result 200). * http://www.gnu.org/licenses/gpl-2.0.txt migrated to: https://www.gnu.org/licenses/gpl-2.0.txt ([https](https://www.gnu.org/licenses/gpl-2.0.txt) result 200). * http://www.rabbitmq.com migrated to: https://www.rabbitmq.com ([https](https://www.rabbitmq.com) result 200). * http://www.mozilla.org/MPL/MPL-1.1.txt migrated to: https://www.mozilla.org/MPL/MPL-1.1.txt ([https](https://www.mozilla.org/MPL/MPL-1.1.txt) result 301). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 * http://maven.apache.org/xsd/maven-4.0.0.xsd * http://www.w3.org/2001/XMLSchema-instance
1 parent 4ca223a commit 94e5c21

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

mvnw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# "License"); you may not use this file except in compliance
99
# with the License. You may obtain a copy of the License at
1010
#
11-
# http://www.apache.org/licenses/LICENSE-2.0
11+
# https://www.apache.org/licenses/LICENSE-2.0
1212
#
1313
# Unless required by applicable law or agreed to in writing,
1414
# software distributed under the License is distributed on an

mvnw.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@REM "License"); you may not use this file except in compliance
88
@REM with the License. You may obtain a copy of the License at
99
@REM
10-
@REM http://www.apache.org/licenses/LICENSE-2.0
10+
@REM https://www.apache.org/licenses/LICENSE-2.0
1111
@REM
1212
@REM Unless required by applicable law or agreed to in writing,
1313
@REM software distributed under the License is distributed on an

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99

1010
<name>RabbitMQ Performance Testing Tool</name>
1111
<description>A Java-based performance testing tool for RabbitMQ.</description>
12-
<url>http://www.rabbitmq.com</url>
12+
<url>https://www.rabbitmq.com</url>
1313

1414
<licenses>
1515
<license>
1616
<name>ASL 2.0</name>
17-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
17+
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
1818
<distribution>repo</distribution>
1919
</license>
2020
<license>
2121
<name>GPL v2</name>
22-
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
22+
<url>https://www.gnu.org/licenses/gpl-2.0.txt</url>
2323
<distribution>repo</distribution>
2424
</license>
2525
<license>
2626
<name>MPL 1.1</name>
27-
<url>http://www.mozilla.org/MPL/MPL-1.1.txt</url>
27+
<url>https://www.mozilla.org/MPL/MPL-1.1.txt</url>
2828
<distribution>repo</distribution>
2929
</license>
3030
</licenses>
@@ -47,7 +47,7 @@
4747

4848
<organization>
4949
<name>Pivotal Software, Inc.</name>
50-
<url>http://www.rabbitmq.com</url>
50+
<url>https://www.rabbitmq.com</url>
5151
</organization>
5252

5353
<properties>
@@ -406,7 +406,7 @@
406406
<backend>html5</backend>
407407
<sourceHighlighter>coderay</sourceHighlighter>
408408
<attributes>
409-
<endpoint-url>http://example.org</endpoint-url>
409+
<endpoint-url>https://example.org</endpoint-url>
410410
<sourcedir>${project.build.sourceDirectory}</sourcedir>
411411
<project-version>${project.version}</project-version>
412412
<imagesdir>./images</imagesdir>

0 commit comments

Comments
 (0)