From 3b0a02cc7b58ae596169efc3c19ad755bf3806fa Mon Sep 17 00:00:00 2001 From: Davide Abgelocola Date: Wed, 22 Dec 2021 12:50:26 +0100 Subject: [PATCH] Replacing http:// with https:// --- docs/_data/navigation.yml | 6 +++--- pom.xml | 10 +++++----- .../nl/jqno/equalsverifier/api/EqualsVerifierApi.java | 2 +- .../exceptions/EqualsVerifierInternalBugException.java | 2 +- .../integration/operational/OutputTest.java | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index 0c921ff80..a85ea8850 100644 --- a/docs/_data/navigation.yml +++ b/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: / diff --git a/pom.xml b/pom.xml index 3f3fb0ffd..eae3d501c 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ EqualsVerifier 3.8.2-SNAPSHOT EqualsVerifier can be used in JUnit unit tests to verify whether the contract for the equals and hashCode methods is met. - http://www.jqno.nl/equalsverifier + https:///www.jqno.nl/equalsverifier org.sonatype.oss @@ -16,7 +16,7 @@ - http://github.com/jqno/equalsverifier + https:///github.com/jqno/equalsverifier scm:git:https://github.com/jqno/equalsverifier scm:git:https://github.com/jqno/equalsverifier @@ -24,7 +24,7 @@ Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https:///www.apache.org/licenses/LICENSE-2.0.txt @@ -33,7 +33,7 @@ Jan Jan Ouwens jan.ouwens@gmail.com - http://www.jqno.nl + https:///www.jqno.nl Central European Time @@ -46,7 +46,7 @@ General Discussion - http://groups.google.com/group/equalsverifier + https:///groups.google.com/group/equalsverifier diff --git a/src/main/java/nl/jqno/equalsverifier/api/EqualsVerifierApi.java b/src/main/java/nl/jqno/equalsverifier/api/EqualsVerifierApi.java index df7f62e5f..47efca1fd 100644 --- a/src/main/java/nl/jqno/equalsverifier/api/EqualsVerifierApi.java +++ b/src/main/java/nl/jqno/equalsverifier/api/EqualsVerifierApi.java @@ -12,7 +12,7 @@ */ public interface EqualsVerifierApi { /* 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 diff --git a/src/main/java/nl/jqno/equalsverifier/internal/exceptions/EqualsVerifierInternalBugException.java b/src/main/java/nl/jqno/equalsverifier/internal/exceptions/EqualsVerifierInternalBugException.java index 75de50a44..def4b3994 100644 --- a/src/main/java/nl/jqno/equalsverifier/internal/exceptions/EqualsVerifierInternalBugException.java +++ b/src/main/java/nl/jqno/equalsverifier/internal/exceptions/EqualsVerifierInternalBugException.java @@ -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); diff --git a/src/test/java/nl/jqno/equalsverifier/integration/operational/OutputTest.java b/src/test/java/nl/jqno/equalsverifier/integration/operational/OutputTest.java index 0e7e1d763..87000a547 100644 --- a/src/test/java/nl/jqno/equalsverifier/integration/operational/OutputTest.java +++ b/src/test/java/nl/jqno/equalsverifier/integration/operational/OutputTest.java @@ -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