From 5bc43ae76b9af490618b04ed7e4e0d80232ce993 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 27 Mar 2019 12:37:39 +0000 Subject: [PATCH] Polish "Use HTTPS for external links wherever possible" See gh-16317 --- .../transaction/jta/NarayanaJtaConfiguration.java | 4 ++-- .../src/main/asciidoc/spring-boot-features.adoc | 4 ++-- spring-boot-starters/README.adoc | 8 ++++---- .../boot/loader/jar/CentralDirectoryFileHeader.java | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java index 29b0dece50..331f949b37 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,7 +44,7 @@ import org.springframework.transaction.jta.JtaTransactionManager; import org.springframework.util.StringUtils; /** - * JTA Configuration for Narayana. + * JTA Configuration for Narayana. * * @author Gytis Trikleris * @since 1.4.0 diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 912aebece0..b9d704e305 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -5027,8 +5027,8 @@ the following provided libraries: * {spring-reference}/#integration-testing[Spring Test] & Spring Boot Test -- Utilities and integration test support for Spring Boot applications. * https://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library. -* http://hamcrest.org/JavaHamcrest/[Hamcrest] -- A library of matcher objects (also known - as constraints or predicates). +* https://github.com/hamcrest/JavaHamcrest[Hamcrest] -- A library of matcher objects + (also known as constraints or predicates). * https://mockito.github.io[Mockito] -- A Java mocking framework. * https://github.com/skyscreamer/JSONassert[JSONassert] -- An assertion library for JSON. * https://github.com/jayway/JsonPath[JsonPath] -- XPath for JSON. diff --git a/spring-boot-starters/README.adoc b/spring-boot-starters/README.adoc index 8cca86acf0..816b4691dc 100644 --- a/spring-boot-starters/README.adoc +++ b/spring-boot-starters/README.adoc @@ -88,19 +88,19 @@ do as they were designed before this was clarified. | https://camunda.org/[Camunda BPM] | https://github.com/camunda/camunda-bpm-spring-boot-starter -| http://ff4j.org/[Feature Flipping For Java (FF4J)] +| https://ff4j.github.io[Feature Flipping For Java (FF4J)] | https://github.com/clun/ff4j/ | https://resteasy.jboss.org/[RESTEasy] | https://github.com/paypal/resteasy-spring-boot -| JSF (https://primefaces.org/[PrimeFaces], https://primefaces-extensions.github.io/[PrimeFaces Extensions], https://bootsfaces.net/[BootsFaces], http://butterfaces.org/[ButterFaces], https://omnifaces.org/[OmniFaces], https://angularfaces.net/[AngularFaces], https://javaserverfaces.java.net/[Mojarra] and https://myfaces.apache.org[MyFaces]) -| http://joinfaces.org +| JSF (https://primefaces.org/[PrimeFaces], https://primefaces-extensions.github.io/[PrimeFaces Extensions], https://bootsfaces.net/[BootsFaces], https://github.com/ButterFaces/ButterFaces[ButterFaces], https://omnifaces.org/[OmniFaces], https://angularfaces.net/[AngularFaces], https://javaserverfaces.java.net/[Mojarra] and https://myfaces.apache.org[MyFaces]) +| https://github.com/joinfaces/joinfaces | Charon reverse proxy | https://github.com/mkopylec/charon-spring-boot-starter -| http://wiremock.org/[WireMock] and Spring REST Docs +| https://github.com/tomakehurst/wiremock[WireMock] and Spring REST Docs | https://github.com/ePages-de/restdocs-wiremock | https://cxf.apache.org/docs/springboot.html[Apache CXF] diff --git a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java index b334259300..7de06f68c7 100644 --- a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java +++ b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,7 +27,7 @@ import org.springframework.boot.loader.data.RandomAccessData; * * @author Phillip Webb * @author Andy Wilkinson - * @see Zip File Format + * @see Zip File Format */ final class CentralDirectoryFileHeader implements FileHeader { @@ -123,8 +123,8 @@ final class CentralDirectoryFileHeader implements FileHeader { /** * Decode MS-DOS Date Time details. See - * mindprod.com/jgloss/zip.html for - * more details of the format. + * + * Microsoft's documentation for more details of the format. * @param date the date part * @param time the time part * @return a {@link Calendar} containing the decoded date.