Skip to content

Commit

Permalink
Replacing http:// with https://
Browse files Browse the repository at this point in the history
  • Loading branch information
dfa1 authored and jqno committed Dec 24, 2021
1 parent d0be167 commit 6d63831
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/_data/navigation.yml
@@ -1,10 +1,10 @@
# main links
main:
- title: "/"
url: http://jqno.nl
url: https://jqno.nl
- title: "Blog"
url: http://jqno.nl/blog
url: https://jqno.nl/blog
- title: "Talks"
url: http://jqno.nl/talks
url: https://jqno.nl/talks
- title: "EqualsVerifier"
url: /
10 changes: 5 additions & 5 deletions pom.xml
Expand Up @@ -7,7 +7,7 @@
<name>EqualsVerifier</name>
<version>3.8.2-SNAPSHOT</version>
<description>EqualsVerifier can be used in JUnit unit tests to verify whether the contract for the equals and hashCode methods is met.</description>
<url>http://www.jqno.nl/equalsverifier</url>
<url>https:///www.jqno.nl/equalsverifier</url>

<parent>
<groupId>org.sonatype.oss</groupId>
Expand All @@ -16,15 +16,15 @@
</parent>

<scm>
<url>http://github.com/jqno/equalsverifier</url>
<url>https:///github.com/jqno/equalsverifier</url>
<connection>scm:git:https://github.com/jqno/equalsverifier</connection>
<developerConnection>scm:git:https://github.com/jqno/equalsverifier</developerConnection>
</scm>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<url>https:///www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

Expand All @@ -33,7 +33,7 @@
<id>Jan</id>
<name>Jan Ouwens</name>
<email>jan.ouwens@gmail.com</email>
<url>http://www.jqno.nl</url>
<url>https:///www.jqno.nl</url>
<timezone>Central European Time</timezone>
</developer>
</developers>
Expand All @@ -46,7 +46,7 @@
<mailingLists>
<mailingList>
<name>General Discussion</name>
<archive>http://groups.google.com/group/equalsverifier</archive>
<archive>https:///groups.google.com/group/equalsverifier</archive>
</mailingList>
</mailingLists>

Expand Down
Expand Up @@ -12,7 +12,7 @@
*/
public interface EqualsVerifierApi<T> {
/* package private */static final String WEBSITE_URL =
"For more information, go to: http://www.jqno.nl/equalsverifier/errormessages";
"For more information, go to: https://www.jqno.nl/equalsverifier/errormessages";

/**
* Suppresses warnings given by {@code EqualsVerifier}. See {@link Warning} to see what warnings
Expand Down
Expand Up @@ -5,7 +5,7 @@
public class EqualsVerifierInternalBugException extends RuntimeException {

private static final String BUG =
"This is a bug in EqualsVerifier. Please report this in the issue tracker at http://www.jqno.nl/equalsverifier";
"This is a bug in EqualsVerifier. Please report this in the issue tracker at https://www.jqno.nl/equalsverifier";

public EqualsVerifierInternalBugException() {
super(BUG);
Expand Down
Expand Up @@ -12,7 +12,7 @@
public class OutputTest {

private static final String SEE_ALSO = "For more information, go to";
private static final String WEBSITE_URL = "http://www.jqno.nl/equalsverifier/errormessages";
private static final String WEBSITE_URL = "https://www.jqno.nl/equalsverifier/errormessages";
private static final String MESSAGE = "a message for an exception";

@Test
Expand Down

0 comments on commit 6d63831

Please sign in to comment.